1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
| <template>
| <div id="app">
| <router-view />
| <theme-picker />
| <Assistant />
| </div>
| </template>
|
| <script>
| import ThemePicker from "@/components/ThemePicker";
|
| export default {
| name: "App",
| components: {
| ThemePicker,
| Assistant: () => import("./components/Assistant"), //异步组件加载方式
| },
| metaInfo() {
| return {
| title:
| this.$store.state.settings.dynamicTitle &&
| this.$store.state.settings.title,
| titleTemplate: (title) => {
| return title
| ? `${title} - ${process.env.VUE_APP_TITLE}`
| : process.env.VUE_APP_TITLE;
| },
| };
| },
| };
| </script>
| <style scoped>
| #app {
| overflow-y: scroll;
| height: 100vh;
| background: #f8fafd;
| /* font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif, "宋体"; */
| font-family: "Hiragino Sans GB";
| }
| #app .theme-picker {
| display: none;
| }
| </style>
|
|