You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
386 B
Vue
23 lines
386 B
Vue
<template>
|
|
<div>
|
|
<transition name="fade">
|
|
<router-view />
|
|
</transition>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'App',
|
|
updated () {
|
|
const loading = document.getElementById('loader-wrapper')
|
|
if (loading) {
|
|
document.body.removeChild(loading)
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
<style lang="scss">
|
|
@import '~packages/assets/style/bsTheme.scss';
|
|
</style>
|