17 lines
426 B
JavaScript
17 lines
426 B
JavaScript
|
// src/main.js
|
||
|
import { createApp } from 'vue'
|
||
|
import ElementPlus from 'element-plus'
|
||
|
import 'element-plus/dist/index.css'
|
||
|
import * as ElementPlusIconsVue from '@element-plus/icons-vue'
|
||
|
import App from './App.vue'
|
||
|
|
||
|
// 创建应用
|
||
|
const app = createApp(App)
|
||
|
|
||
|
// 注册所有图标
|
||
|
for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
|
||
|
app.component(key, component)
|
||
|
}
|
||
|
|
||
|
app.use(ElementPlus)
|
||
|
app.mount('#app')
|