2025-10-15 14:07:39 +08:00
|
|
|
import { createApp } from 'vue'
|
|
|
|
|
import { createPinia } from 'pinia'
|
|
|
|
|
import router from './router'
|
|
|
|
|
import App from './App.vue'
|
|
|
|
|
import './styles/index.css'
|
2025-11-19 17:15:54 +08:00
|
|
|
import 'vant/lib/index.css'
|
|
|
|
|
import "vant/es/toast/style";
|
|
|
|
|
import "vant/es/popup/style";
|
2025-10-15 14:07:39 +08:00
|
|
|
|
|
|
|
|
const app = createApp(App)
|
|
|
|
|
|
|
|
|
|
app.use(createPinia())
|
|
|
|
|
app.use(router)
|
|
|
|
|
|
|
|
|
|
app.mount('#app')
|