mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/student-h5.git
synced 2025-12-09 02:46:47 +08:00
21 lines
561 B
JavaScript
21 lines
561 B
JavaScript
import { createApp } from 'vue'
|
|
import App from './App.vue'
|
|
import router from './router'
|
|
import store from './store'
|
|
import ElementPlus from 'element-plus'
|
|
import 'element-plus/dist/index.css'
|
|
import zhCn from 'element-plus/es/locale/lang/zh-cn'
|
|
import "@/assets/scss/common.scss"
|
|
import * as ElementPlusIconsVue from '@element-plus/icons-vue'
|
|
|
|
|
|
|
|
const app = createApp(App)
|
|
app.use(store).use(router).mount('#app')
|
|
app.use(ElementPlus, {
|
|
locale: zhCn,
|
|
})
|
|
|
|
for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
|
|
app.component(key, component)
|
|
} |