<el-table-column width="160" align="center" header-align="center" property="" label="商品编码"> <template slot-scope="scope"> <el-select clearable filterable v-model.lazy="scope.row.goods_id">
时间: 2023-12-05 11:47:15 浏览: 144
el-table无限滚动+控制列是否显示+列排序(非json)
5星 · 资源好评率100%
这是一段 Vue.js 的代码,其中使用了 Element UI 的组件 el-table-column 和 el-select。el-table-column 用于定义表格的列,其中 property 和 label 属性分别定义了该列对应的数据属性和表头名称。而 el-select 则是一个下拉选择框,通过 v-model 绑定了 scope.row.goods_id 这个数据属性,使得用户可以从下拉框中选择商品编码并将其赋值给 goods_id。该下拉框还支持清空和过滤功能。
阅读全文