赞
踩
- {
- key: 'remark',
- title: '备注',
- width: 150,
- render(rowData, rowIndex) {
- return h(
- NPopover,
- {
- placement: 'top',
- contentStyle: {
- maxWidth: '200px', //自定义宽度
- },
- },
- {
- trigger: () =>
- h(
- 'div',
- {
- style: {
- overflow: 'hidden',
- textOverflow: 'ellipsis',
- whiteSpace: 'nowrap',
- width: '150px'
- }
- },
- {
- default: () => rowData.remark,
- }
- ),
- default: () => h('p', {}, { default: () => rowData.remark }),
- }
- )
- },
- },
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。