You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
442 B
TypeScript

// 引入windi css
import '@/plugins/windicss'
4 years ago
import { createApp } from 'vue'
import App from './App.vue'
const app = createApp(App)
// 引入element-plus
import { setupElementPlus } from '@/plugins/elementPlus'
setupElementPlus(app)
// 引入状态管理
import { setupStore } from '@/store'
setupStore(app)
// 路由
import router, { setupRouter } from './router'
setupRouter(app)
router.isReady().then(() => {
app.mount('#app')
})