iview ui table表格中嵌套input、select 2个功能

宇文金鑫
2023-12-01

理解table如何嵌套input、select首先要理解vue的render函数可以参考:vue render函数介绍

 

当然,也可以复制下面的demo,自己尝试一下:

{
                        title: 'Action',
                        key: 'action',
                        width: 150,
                        align: 'center',
                        render: (h, params) => {
                            return h('div', [
                                h('Button', {
                                    props: {
                                        type: 'primary',
                                        size: 'small'
                                    },
                                    style: {
                                        marginRight: '5px'
                                    },
 类似资料: