import { createApp } from 'vue' import App from './App.vue' import router from './router' import store from './store' import 'element-plus/packages/theme-chalk/src/base.scss' createApp(App).use(store).use(router).mount('#app') axios.js import axios from "axios"; import QS from...
最近使用element-plus开发项目,发现element-plus废弃了Font Icon 使用了 SVG Icon。需要在全局注册组件,或者按需引用。 安装# 使用包管理器# 选择一个你喜欢的包管理器 NPM $ npm install @element-plus/icons-vue Yarn $ yarn add @element-plus/icons-vue pnpm $ pnpm install @element-plus/icons-vue 全局...