Former-commit-id: 068e447a6332149f7c621da924100bacc5a02752 [formerly 80b5e008e56b9c48ccc0450effabc7f33dfd20b4] [formerly 0f8b405cb136355711970a9d9f3f1210272101ca [formerly 85e01a67c3f9e33ad0ac7fef5eeab612f747c08b]] Former-commit-id: 03a1448741f695e2d5c681a11d9dcdca750ff61d [formerly 218dd8e95058a02cafee341dc2330c0a700972df] Former-commit-id: 0d7ebe389f3e640f6a0102e8a4b5a28e395842c0
22 lines
357 B
Vue
22 lines
357 B
Vue
<template>
|
|
<router-view></router-view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'app',
|
|
mounted: function () {
|
|
let loading = document.getElementById('loading')
|
|
loading.classList.add('done')
|
|
|
|
setTimeout(function () {
|
|
loading.parentNode.removeChild(loading)
|
|
}, 200)
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
@import './css/styles.css';
|
|
</style>
|