elementui table行内编辑如何实现双向绑定?

想问下使用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的值得。

所以双向绑定这块无法实现了 请高手相助~


慕桂英3389331
浏览 2294回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript