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

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