记录element-plus按需要导入的问题

引入的问题解决

global

import { App } from "vue"
import "element-plus/theme-chalk/base.css"
// import "element-plus/theme-chalk/index.css"
// import "element-plus/theme-chalk"
import { ElButton } from "element-plus/lib/components"
console.log("elButton", ElButton)

export default {
  install(app: App) {
    app.use(ElButton)
  }
}

main.ts

import { createApp } from "vue"
import App from "./App.vue"
import router from "./router"
import store from "./store"
import "./service"
import globalRegister from "./global"

createApp(App).use(globalRegister).use(store).use(router).mount("#app")

babel-plugin-import 问题解决

babel.config.js

module.exports = {
  plugins: [
    [
      'import',
      {
        libraryName: 'element-plus/lib/components',
        customStyleName: (name) => {
          return `element-plus/theme-chalk/${name}.css`
        },
        customName: (name) => {
          return `element-plus/lib/components/${name}`
        }
      }
    ]
  ],
  presets: ["@vue/cli-plugin-babel/preset"]
}

或者这样,新版本需要去掉el-

module.exports = {
  plugins: [
    [
      "import",
      {
        libraryName: "element-plus/lib/components",
        customStyleName: (name) => {
          return `element-plus/theme-chalk/${name}.css`
        },
        customName: (name) => {
          return `element-plus/lib/components/${name.slice(3)}`
        }
      }
    ]
  ],
  presets: ["@vue/cli-plugin-babel/preset"]
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值