【Element UI】el-checkbox-group label怎么绑定数组对象并支持反显

gengboxb 166 0

解决:把label里的对象JSON.stringify一下变成字符串

<el-checkbox-group class="checkgroup" v-model="checkboxGroup">
     <template v-for="item in items">
        <el-checkbox :key="item.id" :label="JSON.stringify({ id: item.id,, title: item.title })"/>
    </template>
</el-checkbox-group>

发表评论 取消回复
表情 图片 链接 代码

分享