vue element el-table 傳的值報_self.$scopedSlots.default is not a function
阿新 • • 發佈:2018-11-05
點選修改的時候,頁面的預算佔比呈現輸入框的形式,確認修改之後,資料改變,也要把輸入框關閉,變成文字形式。這裡需要改變table的el-table-column值
1 <el-table 2 :data="newlist" 3 style="width: 100%"> 4 <template v-for="(item,index) in tableHeaderData"> 5 <el-table-column 6 :key="index"7 v-if="item.isProp" 8 :prop="item.prop" 9 :label="item.label"> 10 </el-table-column> 11 <el-table-column 12 v-if="!item.isProp" 13 :label="item.label"> 14 <template slot-scope="scope"> 15<el-input-number 16 :key="index+item.prop" 17 :max="100" 18 :min="0" 19 :step="1" 20 :precision="0" 21 controls-position="right" 22 placeholder="請輸入內容" 23 v-model="scope.row.ratio" 24@change="handleEdit(scope.row)" 25 ></el-input-number> 26 </template> 27 </el-table-column> 28 </template> 29 </el-table>
出現_self.$scopedSlots.default is not a function錯誤的時候,要加上具有唯一標識的key值