You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
392 B

1 year ago
<template>
<div id="app">
<router-view />
1 year ago
9 months ago
<!-- <ThemePicker style="display: none;"></ThemePicker> -->
1 year ago
<OnlineFile></OnlineFile>
1 year ago
</div>
</template>
<script>
1 year ago
import OnlineFile from "@/components/OnlineFile/index.vue";
1 year ago
import ThemePicker from "@/components/ThemePicker/index.vue";
1 year ago
export default {
1 year ago
name: 'App',
components: {
1 year ago
ThemePicker,
OnlineFile
1 year ago
}
1 year ago
}
</script>