使用自定义组件
引用自定义组件:
// page.json 注意,不是在app.json里配置
{
"usingComponents":{
"your-custom-component":"mini-antui/es/list/index",
"your-custom-component2":"/components/card/index",
"your-custom-component3":"./result/index",
"your-custom-component4":"../result/index"
}
}
// 项目绝对路径以 / 开头,相对路径以 ./ 或者 ../ 开头,npm 路径不以 / 开头
tips:安装npm模块请参考框架概述npm部分。
使用自定义组件:
// page.axml
<list>
<view slot="header">列表头部</view>
<block a:for="{{items}}">
<list-item key="item-{{index}}">
{{item.title}}
<view class="am-list-brief">{{item.brief}}</view>
</list-item>
</block>
<view slot="footer">列表尾部</view>
</list>
原文: https://docs.alipay.com/mini/framework/use-custom-component