filebrowser/assets/src/App.vue

23 lines
390 B
Vue
Raw Normal View History

2017-06-28 10:45:41 +00:00
<template>
2017-07-03 09:40:24 +00:00
<router-view></router-view>
2017-06-28 10:45:41 +00:00
</template>
<script>
export default {
name: 'app',
2017-06-28 15:05:30 +00:00
mounted: function () {
2017-07-06 20:18:34 +00:00
// Remove loading animation.
2017-06-30 09:25:35 +00:00
let loading = document.getElementById('loading')
loading.classList.add('done')
setTimeout(function () {
loading.parentNode.removeChild(loading)
2017-06-30 15:04:01 +00:00
}, 200)
2017-06-28 10:45:41 +00:00
}
}
</script>
<style>
@import './css/styles.css';
</style>