基于Vue@3.x的组件库移步
:backhand_index_pointing_left::backhand_index_pointing_left:文档地址
安装 / 导入 / 使用
安装
npm install @wya/vc --save
按需加载,需要安装 配置.babelrc
{
[
[
"import",
[
{
libraryName: "@wya/vc",
libraryDirectory: "lib",
customName: (name) => {
if (/^m-/.test(name)) {
return `@wya/vc/lib/${name.replace(/^m-/, '')}/index.m`;
}
return `@wya/vc/lib/${name}`;
}
}
]
]
];
}
template下可以使用
注册
import {
评论0
最新资源