Bootstrap

iview table 表格列超出显示...

{
          title: '备注',
          align: 'center',
          key: 'content',
          render: (h, params) => {
            return h('div', [
              h('span', {
                style: {
                  display: 'inline-block',
                  width: '100%',
                  overflow: 'hidden',
                  // 在此设置溢出部分...显示
                  textOverflow: 'ellipsis',
                  whiteSpace: 'nowrap'
                },
                domProps: {
                  title: params.row.content
                }
              }, params.row.content)
            ])
          }
        }
;