mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
24 lines
373 B
Vue
24 lines
373 B
Vue
<template>
|
|
<div>
|
|
<router-view></router-view>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "app",
|
|
mounted() {
|
|
const loading = document.getElementById("loading");
|
|
loading.classList.add("done");
|
|
|
|
setTimeout(function () {
|
|
loading.parentNode.removeChild(loading);
|
|
}, 200);
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
@import "./css/styles.css";
|
|
</style>
|