filebrowser/frontend/src/App.vue

24 lines
368 B
Vue
Raw Normal View History

2018-02-01 12:17:04 +00:00
<template>
<div>
<router-view></router-view>
</div>
2018-02-01 12:17:04 +00:00
</template>
<script>
export default {
name: 'app',
mounted () {
const loading = document.getElementById('loading')
loading.classList.add('done')
2018-02-01 12:17:04 +00:00
setTimeout(function () {
loading.parentNode.removeChild(loading)
}, 200)
2018-02-01 12:17:04 +00:00
}
}
</script>
<style>
@import './css/styles.css';
</style>