v-model:value=" record.controlTypeList.find((obj) => obj.type == column.dataIndex) .control "
时间: 2024-02-14 17:31:26 浏览: 82
vue-3d-model::camera:vue.js 3D模型查看器组件
这段代码是使用 Vue.js 中的 v-model 指令来绑定一个值。在这个例子中,v-model:value 绑定的值是根据 record.controlTypeList 数组中的元素进行计算得到的。通过 find() 方法,找到 column.dataIndex 属性与 obj.type 相匹配的元素,并获取该元素的 control 属性作为绑定的值。
阅读全文