1.github下载iview App
https://github.com/TalkingData/iview-weapp
2.下载后解压出来 有个dist文件夹 里面都是组件
3.建议重命名iView 好辨别
4.把这个加进去static中
5.在main.js加上
export default {
config: {
usingComponents: {
'i-con': '../../static/icon/index',
"i-card": '../../static/icon/index'
}
}
}
6.在引用的页面加上main.json文件 按需加上
{
"usingComponents": {
"i-icon": "../../static/iView/icon/index"
}
}
7.目前一个个加有点麻烦有待探讨~
网友评论