vue 表格使用el-select
<el-table-column label="示例" width="210" align="center"> <template slot-scope="scope"> <el-option v-for="item in Options" :key="item.value" :label="item.label" :value="item.value" /> </el-select> </template> </el-table-column>
后端响应数据: [{ "env_value": 'pre', } "Options": [{"value": 'test', "label": "测试"}, {"value": 'pre', "label": "预发布"}], ],
目前还在学习中,希望会对大家有所帮助,觉得不错,就点赞支持一下。
另外,转载时请附带链接。谢谢!