kun-galgame-vue/src/main.ts

17 lines
355 B
TypeScript
Raw Normal View History

2023-04-17 15:20:49 +00:00
// core
2023-05-02 15:22:46 +00:00
import { createApp } from 'vue'
// APP
import App from './App.vue'
2023-04-20 15:34:48 +00:00
/* 引入 vue-router */
2023-05-02 15:22:46 +00:00
import router from './router'
2023-04-20 15:34:48 +00:00
/* 引入 Pinia */
2023-05-02 15:22:46 +00:00
import { createPinia } from 'pinia'
2023-04-20 15:34:48 +00:00
/* 导入 Pinia */
const store = createPinia()
2023-04-17 15:20:49 +00:00
// css
2023-05-14 07:16:28 +00:00
import '@/styles/reset.css'
import '@/styles/theme/theme.less'
2023-05-02 15:22:46 +00:00
createApp(App).use(router).use(store).mount('#app')