赞
踩
前段时间做毕业设计的时候遇到el-checkbox-group不能回显的问题,经查阅相关文档后发现问题在于v-model和label的值要一样
<el-form-item label="影片类别" prop="categoryIds">
<el-checkbox-group v-model="movieData.categoryIds">
<el-checkbox :label="category.categoryId.toString()" v-for="category in categories" :key="category.categoryId">{{ category.name }}</el-checkbox>
</el-checkbox-group>
</el-form-item>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。