Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
10 righe
309 B
10 righe
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')
|
|
|