chenyc
2022-09-08 f611789518e4977c211fe8b1e03cb2f8e627445a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { createApp } from 'vue'
import App from './App.vue'
import router from './router/index'
// 引入局部样式
// import 'vant/es/toast/style'
// 引入全局样式
import 'vant/lib/index.css'
import { createPinia } from 'pinia'
// mock数据
// import './utils/mock'
 
const app = createApp(App as any)
app.use(router)
app.use(createPinia())
app.mount('#app')