解决:把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>
本文作者为gengboxb,转载请注明。