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

10 line
222 B

3 年之前
import { createApp } from 'vue'
3 年之前
import App from '@/App.vue'
3 年之前
// @ts-ignore
3 年之前
import router from '@/router/index'
3 年之前
// @ts-ignore
3 年之前
import {store,key} from '@/store/index'
3 年之前
3 年之前
createApp(App).use(router).use(store,key).mount('#app')