组件嵌套组件其实和页面嵌套组件使用大差不差,也是分为注册定义和调用
组件tabBar
- 组件所在目录位置
/compontents/tabBar/tabBar
组件wxml
<view> 自定义组件 </view>
组件panel
组件所在目录位置
/compontents/panel/panel
在json文件中注册定义组件tabBar
{ "component": true, "usingComponents": { "tabBar":"/compontents/tabBar/tabBar" } }
组件wxml
在panel中使用tabBar组件
<view> <tabBar/> </view>
Last modification:March 17, 2022
© Allow specification reprint
Comment here is closed