html表格中加下拉,怎样在iview的Table表格中添加下拉菜单?h('Dropdown', {
style: {
marginLeft: '5px'
},
on: {      'on-click': (value) => {
console.log(value)
}
}
}, [
h('div', {
class: {
member_operate_div: true
}
}, [
h('Button', {
props: {
type: 'primary',
size: 'small'
}
}, [
h('span', '更多'),
h('Icon', {
props: {
type: 'arrow-down-b'
},
style: {
marginLeft: '5px'
}
})html下拉菜单的制作方法
])
]),
h('DropdownMenu', {
slot: 'list'
}, [
h('DropdownItem', {
props: {
name: 'edit'
}
}, [
h('Button', {
props: {
type: 'primary',
size: 'small'
},
style: {
display: 'inline-block',
width: '76px'
},
on: {
click: () => {
this.w, params.index) }
}
}, '编辑')
])
])
]
)

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。