21 lines
328 B
Vue
21 lines
328 B
Vue
<template>
|
|
<router-view></router-view>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
// eslint-disable-next-line no-undef
|
|
__webpack_public_path__ = window.FileBrowser.StaticURL + "/";
|
|
|
|
export default {
|
|
name: "app",
|
|
computed: {},
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
/* Always load styles.css */
|
|
@import "./css/styles.css";
|
|
@import "./css/dark.css";
|
|
</style>
|