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.
46 lines
1.1 KiB
46 lines
1.1 KiB
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 router from '@/router' |
|
//引入仓库 |
|
import pinia from '@/store' |
|
|
|
import App from '@/App.vue' |
|
//svg插件需要配置代码 |
|
import 'virtual:svg-icons-register' |
|
//引入模板的全局的样式 |
|
import '@/styles/index.scss' |
|
|
|
//获取应用实例对象 |
|
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, '===========') |
|
|
|
//测试axios数据 |
|
// import axios from 'axios' |
|
// axios({ |
|
// url: '/api/user/login', |
|
// method: 'post', |
|
// data: { |
|
// username: 'admin', |
|
// password: '111111', |
|
// }, |
|
// }) |
|
|
|
|
|
app.use(router) |
|
app.use(pinia) |
|
// 将应用挂载到挂载点上 |
|
app.mount('#app')
|
|
|