想问下使用element table实现行内编辑的话如何实现双向绑定,直接把内嵌的input 通过v-model绑定到表格的data上呢?
<yl-onlytable
@current-change="_currentChange"
:configs="tableConfig"
:tableloading="mainTableLoading"
:tableData="tableData"
>
<template :slot="item.name" scope="scope" v-for="(item,index) in tableEditColSlotConfig.formConfig">
<rowComs :option="item" :val="scope.row[item.name]"></rowComs>
</template>
</yl-onlytable>
其中
rowComs
是一个组件,渲染单个组件用的 在组件内部用的v-model绑定 直接绑定到了scope.row[item.name] 但是scope.row[item.name]的值更新后是无法更新tableData的值得。
所以双向绑定这块无法实现了 请高手相助~
相关分类