1、自定义组件名不能用驼峰命名
正确:<shop-head model="{{model}}"></shop-head>
错误:<shopHead model="{{model}}"></shopHead>
2、自定义组件内不支持iconfont,编译时将/去掉了
官方回复10月中旬支持
暂时方案,拷贝一份iconfont.css作为自定义组件的iconfont,加双\\
3、自定义组件支持template,但是不支持template嵌套
不支持4、自定义组件仅支持class 选择器
5、s-for与s-if不可在同一标签下同时使用。
<view class="goodsTag theme-bgc" style="{{customTheme.bgc}}" s-for="item.tag.goodsBizTag" s-for-item="item3" s-key="index3" s-if="item.tag && item.tag.goodsBizTag && item3.type==1501">{{item3.text}}</view>
错误!
网友评论