12 lines
274 B
TypeScript
12 lines
274 B
TypeScript
import { createApp } from 'vue'
|
|
import './style.css'
|
|
import 'vant/es/image-preview/style';
|
|
import router from './router'
|
|
import store from './store'
|
|
import './permission'
|
|
import App from './App.vue'
|
|
|
|
const app=createApp(App)
|
|
app.use(router)
|
|
app.use(store)
|
|
app.mount('#app'); |