尚硅谷--管理系统

44 lines
1.0 KiB

5 months ago
import { createApp } from 'vue'
5 months ago
//引入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'
4 months ago
//引入路由
import router from '@/router'
import pinia from '@/store'
5 months ago
import App from '@/App.vue'
//获取应用实例对象
5 months ago
const app = createApp(App)
5 months ago
for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
app.component(key, component)
}
app.use(ElementPlus, {
locale: zhCn,
})
4 months ago
//打印限制
// console.log(import.meta.env, '===========')
4 months ago
//测试axios数据
4 months ago
// import axios from 'axios'
// axios({
// url: '/api/user/login',
// method: 'post',
// data: {
// username: 'admin',
// password: '111111',
// },
// })
4 months ago
4 months ago
//svg插件需要配置代码
import 'virtual:svg-icons-register'
import '@/styles/index.scss'
4 months ago
app.use(router)
app.use(pinia)
4 months ago
// 将应用挂载到挂载点上
5 months ago
app.mount('#app')