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.

11 line
309 B

2 年之前
import { createApp } from 'vue'
2 年之前
import App from '@/App.vue'
2 年之前
2 年之前
import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'
2 年之前
2 年之前
import router from '@/router/index'
2 年之前
import { store, key } from '@/store/index'
2 年之前
createApp(App).use(ElementPlus).use(router).use(store, key).use(ElementPlus).mount('#app')