filebrowser/frontend/src/App.vue

27 lines
473 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>
2021-04-20 19:51:10 +00:00
// eslint-disable-next-line no-undef
__webpack_public_path__ = window.FileBrowser.StaticURL + "/";
2018-02-01 12:17:04 +00:00
export default {
2021-03-21 11:51:58 +00:00
name: "app",
mounted() {
const loading = document.getElementById("loading");
loading.classList.add("done");
2018-02-01 12:17:04 +00:00
setTimeout(function () {
2021-03-21 11:51:58 +00:00
loading.parentNode.removeChild(loading);
}, 200);
},
};
2018-02-01 12:17:04 +00:00
</script>
<style>
2021-03-21 11:51:58 +00:00
@import "./css/styles.css";
2018-02-01 12:17:04 +00:00
</style>