Vue uni-app引用 vant-ui
第一步 提前准备好 uni-app项目
第二部 下载 vant-ui压缩包 https://github.com/youzan/vant-weapp
第三部
讲压缩包中的dist文件按照这个目录放,自己也可以自定义
第四部
引用全局vant 样式
在App.vue文件中加上
<style>
@import "/wxcomponents/vant/dist/common/index.wxss";
</style>
第五步
全局注册组件
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8",
"usingComponents": {
"van-button": "/wxcomponents/vant/dist/button/index"
}
}
第六步
页面使用
<view class="content">
<van-button type="warning">警告按钮</van-button>
</view>
到此就结束了