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.
24 lines
729 B
24 lines
729 B
import { createApp } from 'vue' |
|
//引入element-ui插件与样式 |
|
import ElementPlus from 'element-plus' |
|
import 'element-plus/dist/index.css' |
|
import * as ElementPlusIconsVue from '@element-plus/icons-vue' |
|
//全局配置国际化的配置 |
|
import zhCn from 'element-plus/es/locale/lang/zh-cn' |
|
import App from '@/App.vue' |
|
//获取应用实例对象 |
|
const app = createApp(App) |
|
for (const [key, component] of Object.entries(ElementPlusIconsVue)) { |
|
app.component(key, component) |
|
} |
|
app.use(ElementPlus, { |
|
locale: zhCn, |
|
}) |
|
//打印限制 |
|
// console.log(import.meta.env, '===========') |
|
//svg插件需要配置代码 |
|
import 'virtual:svg-icons-register' |
|
|
|
import '@/styles/index.scss' |
|
// 将应用挂载到挂载点上 |
|
app.mount('#app')
|
|
|