Vue3按需引入ElementUI

1、npm install --save element-ui --legacy-peer-deps
2、npm install babel-plugin-component -D --legacy-peer-deps
3、配置babel.config.js

module.exports = {
  presets: [
    "@vue/cli-plugin-babel/preset",//这行是默认有的,其余是要加的。
    ["@babel/preset-env", { modules: false }],//之前第一项写的是es2015,但是报错了,后来看了别的博主,发现因为Vue版本太高了,写es2015会出错。
  ],
  plugins: [
    [
      "component",
      {
        libraryName: "element-ui",
        styleLibraryName: "theme-chalk",
      },
    ],
  ],
};

4、在main.js中引入需要使用的模块

import { createApp } from 'vue';
import { Button, Select } from 'element-ui';
import App from './App.vue';
import router from './router';
import store from './store';

const app = createApp(App);
app.use(Button);
app.use(Select);
app.use(store);
app.use(router);
app.mount('#app');

©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

友情链接更多精彩内容