时间:2023-03-09来源:系统城装机大师作者:佚名
记录一档使用arco-design按需加载的问题,来帮助更多的开发者避免。当前项目我使用的 @arco-design/web-vue
与 vite-plugin-style-import
版本是:
1 2 |
"@arco-design/web-vue" : "^2.43.2" , "vite-plugin-style-import" : "^2.0.0" |
首先根据 arco-design 官方的示例,我使用 vite-plugin-style-import 插件来自动加载组件样式,代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
import { defineConfig } from "vite" ; import vue from "@vitejs/plugin-vue" ; import { createStyleImportPlugin } from "vite-plugin-style-import" ; export default defineConfig({ server:{ host: "0.0.0.0" , }, plugins: [ vue(), createStyleImportPlugin({ libs: [ { libraryName: "@arco-design/web-vue" , esModule: true , resolveStyle: (name) => { // less return `@arco-design/web-vue/es/${name}/style/index.js`; }, }, ], }), ], }); |
正常使用 Inpuit
Button
组件的时候是没有问题的可以正常渲染,但是当我使用组 InputSearch
InputPassword
ImagePreview
FormItem...
等类似于一些驼峰命名的组件(注意:不包含所有驼峰名的组件),在vite项目中会报一个样式引入的错误如下:
Failed to resolve import "/mnt/d/projectSpace/self-test/node_modules/@arco-design/web-vue/es/form-item/style/index.js" from "src/App.vue". Does the file exist?
可以看到我们在 vite.config.js
配置文件中 resolveStyle
方法中返回了一个样式文件的路径,可以打印出来看一下这个 name
是什么。
1 2 3 4 5 6 7 8 9 10 11 12 13 |
createStyleImportPlugin({ libs: [ { libraryName: "@arco-design/web-vue" , esModule: true , resolveStyle: (name) => { console.log( "resolveStyle===>" ,name) // less return `@arco-design/web-vue/es/${name}/style/index.js`; }, }, ], }), |
这么一看也没有什么问题,我使用组件的名字就是 FormItem
访问的也是 form-item
,那再去 @arco-design
包里面查询一下对应的路径是否有文件
路径 @arco-design/web-vue/es/form-item/style/index.js
匪夷所思的一幕看到了在 /@arco-design/web-vue/es
目录下并没有 form-item
文件夹,还有前面我们遇到所有的报错的组件如 InputSearch
InputPassword
ImagePreview
FormItem
也都是没有对应的文件夹,所以才导致他找不到这个组件的样式文件,但是通过上图可以看到我们导入的 FormItem
组件是从 form
文件夹中导出的,所以我们只需要 @arco-design/web-vue/es/form-item/style/index.js
改成 @arco-design/web-vue/es/form/style/index.js
导出就好了。
问题原因找到了那处理起来就方便了, 我们可以写一个方法来修改这个组件的名称获取对应的路径。
resolveStyle()
回调中的 name
通过他生成一个路径existsSync
判断对应的路径文件是否存在,他返回一个 boolean
,存在返回 true
反之 false
-
结尾的名称去除,如原路径是 input-search
转成 input
, 如果有三级依此类推,一步一步的去找。""
字符串最终代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
import { existsSync } from "node:fs" ; import { join } from "node:path" ; import { defineConfig } from "vite" ; import vue from "@vitejs/plugin-vue" ; import { createStyleImportPlugin } from "vite-plugin-style-import" ; // 获取arco样式路径 function getArcoStylePath(name) { const names = name.split( "-" ); const path = `@arco-design/web-vue/es/${name}/style/index.js`; if (existsSync(join(__dirname, "./node_modules/" + path))) { return path; } else { names.pop() return getArcoStylePath(names.join( "-" )) || "" } } export default defineConfig({ server: { host: "0.0.0.0" , }, plugins: [ vue(), createStyleImportPlugin({ libs: [ { libraryName: "@arco-design/web-vue" , esModule: true , resolveStyle: (name) => { // less return getArcoStylePath(name);; }, }, ], }), ], }); |
resolveStyle()
回调中的 name
返回的是当前组件名称的 name
而且类似 Input
InputSearch
这样的组件 arco 是把他们归类到 input
文件夹下,同理他们的样式文件肯定统一在 input文件夹下,所以我们通过 @arco-design/web-vue/es/input-search/style/index.js
路径是找不到的,由此一来找到规则后就通过路径裁剪的形式一步一步的寻找文件,最终解决此类抛错。
2023-03-18
如何使用正则表达式保留部分内容的替换功能2023-03-18
gulp-font-spider实现中文字体包压缩实践2023-03-18
ChatGPT在前端领域的初步探索最近闲来无事,在自己的小程序里面集成了一个小视频的接口,但是由于小程序对于播放视频的限制,只能用来做一个demo刷视频了,没办法上线体验。小程序播放视频限制最多10个,超出可能...
2023-03-18
Vue.js、React和Angular对比 以下是Vue.js的代码示例: 以下是React的代码示例: 以下是Angular的代码示例:...
2023-03-18