Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
10 строки
309 B
10 строки
309 B
import { createApp } from 'vue'
|
|
import App from '@/App.vue'
|
|
|
|
import ElementPlus from 'element-plus'
|
|
import 'element-plus/dist/index.css'
|
|
|
|
import router from '@/router/index'
|
|
import { store, key } from '@/store/index'
|
|
|
|
createApp(App).use(ElementPlus).use(router).use(store, key).use(ElementPlus).mount('#app')
|
|
|