赞
踩
1.icon.wxml
- <!--component/icon/icon.wxml-->
- <view class="icon-box">
- <slot></slot>
- </view>
2.icon.wxss
- .icon-box{
- background-color:red;
- }
3.icon.js
- Component({
- options: {
- multipleSlots: true // 在组件定义中使用多个slot支持
- }
- })
4.index.wxml调用
- <c-icon class="icon-box">
- <view>1111</view>
- </c-icon>
结果如下:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。