kun-galgame-vue/src/main.ts
2023-05-17 23:56:47 +08:00

19 lines
397 B
TypeScript

// core
import { createApp } from 'vue'
// APP
import App from './App.vue'
/* 引入 vue-router */
import router from './router'
/* 引入 Pinia */
import { createPinia } from 'pinia'
// 导入 css 动画
import 'animate.css'
/* 导入 Pinia */
const store = createPinia()
// css
import '@/styles/reset.css'
import '@/styles/theme/theme.less'
createApp(App).use(router).use(store).mount('#app')