andengxitong/src/main.ts

11 lines
235 B
TypeScript
Raw Normal View History

2024-06-18 15:42:29 +08:00
import { createApp } from 'vue'
import './style.css'
import App from './App.vue'
import router from './router'
2024-06-18 16:07:25 +08:00
import Vant from 'vant';
import 'vant/lib/index.css';
2024-06-18 15:42:29 +08:00
const app = createApp(App);
2024-06-18 16:07:25 +08:00
app.use(router).use(Vant).mount('#app')
2024-06-18 15:42:29 +08:00