微信小程序整合使用Vant

文章目录

1、安装

右键打开小程序根目录:
微信小程序整合使用Vant

输入:npm i @vant/weapp -S --production 安装

微信小程序整合使用Vant

2、输入npm init --yes完成初始化

这一步很重要,如果没有初始化是构建不了npm的

微信小程序整合使用Vant

3、回到微信开发者工具

找到工具,构建npm,在本地设置npm模块
微信小程序整合使用Vant
微信小程序整合使用Vant

微信小程序整合使用Vant

4、修改 app.json

将 app.json 中的 “style”: “v2” 去除,小程序的新版基础组件强行加上了许多样式,难以去除,不关闭将造成部分组件样式混乱。
微信小程序整合使用Vant

5、测试

vant官网:https://vant-contrib.gitee.io/vant/#/zh-CN/button

wxml

<van-rate value="{{ value }}" bind:change="onChange" />

json

"usingComponents": {
  "van-rate": "@vant/weapp/rate/index"
}

js

Page({
  data: {
    value: 3,
  },

  onChange(event) {
    this.setData({
      value: event.detail,
    });
  },
});

测试结果:
微信小程序整合使用Vant

上一篇:vue + vant 入门(实现登录注册)


下一篇:自动精简配置&重复数据删除核心技术点及其经济效应探究