微信小程序项目使用npm安装vant-weapp的正确步骤,简单易懂
vant-weapp
轻量、可靠的小程序 UI 组件库
项目地址:https://gitcode.com/gh_mirrors/va/vant-weapp
免费下载资源
·
微信小程序项目使用npm安装vant-weapp的正确步骤
1、在当前小程序项目目录
npm init -y
构建npm项目
2、运行命令 npm install vant-weapp -S --production
安装完 发现在当前小程序目录下新增node_modules目录 下面有了vant-weapp组件文件夹 如下图:
3、详情里面:选中使用npm模块
4、进入微信开发工具:选择 工具 -> 构建npm
5、下面以引入button组件到某页面为例子:
在此页面的.json中配置
"usingComponents": {
"van-button": "../../miniprogram_npm/vant-weapp/button/index"
},
然后在此页码的wxml中
<van-button type="default">默认按钮</van-button>
<van-button type="primary">主要按钮</van-button>
<van-button type="info">信息按钮</van-button>
<van-button type="warning">警告按钮</van-button>
<van-button type="danger">危险按钮</van-button>
重新编译项目 发现 已经正常引用了!!
文章源自:
https://juejin.cn/post/6844904064828850189
GitHub 加速计划 / va / vant-weapp
17.63 K
3.47 K
下载
轻量、可靠的小程序 UI 组件库
最近提交(Master分支:2 个月前 )
d25ded55
Bumps [ws](https://github.com/websockets/ws) from 7.5.6 to 7.5.10.
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](https://github.com/websockets/ws/compare/7.5.6...7.5.10)
---
updated-dependencies:
- dependency-name: ws
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 4 个月前
f6cb13ba
4 个月前
更多推荐
已为社区贡献1条内容
所有评论(0)