当前位置: 首页> 健康> 美食 > 建筑工程网上考试答案_邢台抖音优化_神秘网站_b站免费建网站

建筑工程网上考试答案_邢台抖音优化_神秘网站_b站免费建网站

时间:2025/8/27 16:09:07来源:https://blog.csdn.net/weixin_42949219/article/details/143188391 浏览次数:0次
建筑工程网上考试答案_邢台抖音优化_神秘网站_b站免费建网站

View Design之table自定义单元格模版

在 columns 的某列声明 slot 后,就可以在 Table 的 slot 中使用参数。
slot 的参数有 3 个:当前行数据 row,当前列数据 column,当前行序号 index。
在这里插入图片描述
在这里插入图片描述

完整示例

<template><Table border :columns="columns" :data="data"><template #name="{ row }"><strong>{{ row.name }}</strong></template><template #action="{ row, index }"><Button type="primary" size="small" style="margin-right: 5px" @click="show(index)">View</Button><Button type="error" size="small" @click="remove(index)">Delete</Button></template></Table>
</template>
<script>export default {data () {return {columns: [{title: 'Name',slot: 'name'},{title: 'Age',key: 'age'},{title: 'Address',key: 'address'},{title: 'Action',slot: 'action',width: 150,align: 'center'}],data: [{name: 'John Brown',age: 18,address: 'New York No. 1 Lake Park'},{name: 'Jim Green',age: 24,address: 'London No. 1 Lake Park'},{name: 'Joe Black',age: 30,address: 'Sydney No. 1 Lake Park'},{name: 'Jon Snow',age: 26,address: 'Ottawa No. 2 Lake Park'}]}},methods: {show (index) {this.$Modal.info({title: 'User Info',content: `Name:${this.data[index].name}<br>Age:${this.data[index].age}<br>Address:${this.data[index].address}`})},remove (index) {this.data.splice(index, 1);}}}
</script>

引用出处:
https://www.iviewui.com/view-ui-plus/component/form/table

关键字:建筑工程网上考试答案_邢台抖音优化_神秘网站_b站免费建网站

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com

责任编辑: