fect-org / fect

Minimalist UI components built on Vue-next

Home Page:https://www.fect-org.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

全局导入组件使用没有生效

2775668948 opened this issue · comments

Bug report 🐞

在使用VueCli创建的项目中导入安装组件使用没有生效。

Version & Environment

FectUI版本1.0.3,Vue版本3.0.0.
使用环境为Mac,Chrome浏览器。

Expection

Actual results (or Errors)

commented

@2775668948

因为这个版本正在迁移重构项目结构采用monorepo,文档我忘记更新了。如果你是按需引入实际上的引入应该是这样。

babel配置

 plugins: [
    [
      'import',
      {
        libraryName: '@fect-ui/vue',
        libraryDirectory: 'lib',
        style: (name) => `${name}/style/index`,
      },
    ],
  ],

全局引入因为打包构建问题我测试了下确实有这个问题。全局引入会在下个版本一起被修复。建议先使用按需引入