-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathbootstrap.ts
68 lines (58 loc) · 2.15 KB
/
bootstrap.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
/*
* Copyright (c) 2023-2024, Terwer . All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Terwer designates this
* particular file as subject to the "Classpath" exception as provided
* by Terwer in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Terwer, Shenzhen, Guangdong, China, [email protected]
* or visit www.terwer.space if you need additional information or have any
* questions.
*/
import { createApp } from "vue"
import App from "./App.vue"
import { createAppLogger } from "./utils/appLogger.ts"
import { useVueRouter } from "./composables/useVueRouter.ts"
import i18n from "./locales"
import { createPinia } from "pinia"
import iframeResize from "./utils/directives/iframeResize.ts";
/**
* Vue 入口
*
* @author terwer
* @version 0.9.0
* @since 0.0.1
*/
const createVueApp = async (isMount?: boolean) => {
const logger = createAppLogger("vue-main-entry")
// https://stackoverflow.com/a/62383325/4037224
const app = createApp(App)
// 国际化
app.use(i18n)
// pinia
const pinia = createPinia()
app.use(pinia)
// router
const router = useVueRouter()
app.use(router)
// ElementPlus 包太大,需要改成按需引入
// https://element-plus.org/zh-CN/guide/quickstart.html#%E6%8C%89%E9%9C%80%E5%AF%BC%E5%85%A5
// app.use(ElementPlus)
// ifreme resizere
app.directive('resize', iframeResize)
return { i18n, router, app }
}
export { createVueApp }