1. 子元素js中開啟slot功能
```
options: {
multipleSlots: true
},
```
2. 子組件使用slot標簽預留元素位置,等待父元素寫入
```
--tag.html--
<view class="tag tag-class">
<text>{{comment}}</text>
<slot name="num"></slot>//預留slot元素位置
</view>
```
3. 父元素寫入
```
--index--
<v-tag comment="{{item.comment}}" tag-class="{{index==0?'bg':''||index==1?'bg1':''}}">
<view slot="num" class="num">
//將該view寫入名為num的slot
+{{item.num}}
</view>
</v-tag>
```