-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
129 lines (116 loc) · 3.47 KB
/
index.ts
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
// https://vitepress.dev/guide/custom-theme
import type {Theme} from 'vitepress'
import DefaultTheme from 'vitepress/theme'
import './style.css'
import Layout from './Layout.vue'
import naive from 'naive-ui' // import "unocss"
import {QAvatar, QBadge, QBar, QBtn, QCard, QCarousel, QCarouselSlide, QFooter, QForm, QHeader, QIcon, QImg, QInput, QLayout, QPage, QPageContainer, QSeparator, QTab, QTabPanel, QTabPanels, QTabs, QTree, Quasar,} from 'quasar' // Import icon libraries
import '@quasar/extras/material-icons/material-icons.css' // Import Quasar css
import 'quasar/src/css/index.sass'
import {createI18n} from 'vue-i18n'
import messages from '../../src/i18n'
import {createRouter, createWebHashHistory} from 'vue-router'
// 1. 定义路由组件.
// 也可以从其他文件导入
const Team = { template: '<div>Team</div>' }
const About = { template: '<div>About</div>' }
export default {
extends: DefaultTheme,
// todo x: https://vitepress.dev/zh/guide/i18n#separate-directory-for-each-locale
Layout,
// Layout: () => {
// return h(DefaultTheme.Layout, null, {
// // https://vitepress.dev/guide/extending-default-theme#layout-slots
// })
// },
enhanceApp({ app, router, siteData }) {
// router
console.log('router: ', router)
// router.onBeforePageLoad = async (to) => {
// // Here you can set the routes you want to configure.
// if (to == '/about2' || to == '/about2.html') {
// router.route.path = to
// router.route.component = markRaw(About) // Here you set your .vue file
// router.route.data = {
// frontmatter: { sidebar: false, layout: 'page' },
// }
// return false
// }
// return true
// }
// 2. 定义一些路由
// 每个路由都需要映射到一个组件。
// 我们后面再讨论嵌套路由。
const routes = [
{ path: '/team', component: Team },
{ path: '/about', component: About },
]
// 3. 创建路由实例并传递 `routes` 配置
// 你可以在这里输入更多的配置,但我们在这里
// 暂时保持简单
const myRouter = createRouter({
// 4. 内部提供了 history 模式的实现。为了简单起见,我们在这里使用 hash 模式。
history: createWebHashHistory(),
routes, // `routes: routes` 的缩写
})
// 确保 _use_ 路由实例使
// 整个应用支持路由。
app.use(myRouter)
//
// todo x: naive-ui, 不使用, 620 KB, 使用, 1.9MB
//
app.use(naive) // todo x: 不使用, 620 KB, 使用, 1.9MB
//
// todo x: quasar
//
app.use(
Quasar,
{
plugins: {}, // import Quasar plugins and add here
//
// TODO X: 需要手动枚举一遍!!!
//
components: [
QBtn,
QCard,
QForm,
QHeader,
QFooter,
QTab,
QTabs,
QTabPanel,
QTabPanels,
QSeparator,
QCarousel,
QCarouselSlide,
QAvatar,
QBar,
QBadge,
QIcon,
QInput,
QImg,
QTree,
QPage,
QLayout,
QPageContainer,
],
},
{
req: {
headers: {},
},
}
)
//
// todo x: fix i18n
//
const i18n = createI18n({
locale: 'en-US',
fallbackLocale: 'en-US',
legacy: false,
messages,
})
app.use(i18n)
// app.mount('#app')
},
} satisfies Theme