这里只介绍官方推荐的通过useExtendedLib扩展库的方式引入,这种方式引入的组件将不计入代码包的大小。
- app.json中配置
{"useExtendedLib": {"kbone": true,"weui": true}
}
- 在使用组件的页面的 json 文件加入 usingComponents 配置字段
{"usingComponents": {"mp-badge": "weui-miniprogram/badge/badge"}
}
- 页面中使用
<mp-badge content="123"></mp-badge>
参考:https://blog.csdn.net/weixin_45665171/article/details/129056639