vue 超长文本截取,悬浮框提示

vue 超长文本截取,悬浮框提示

样式:

table:

overflow-table table-context">

主要代码:

{
  title: '统一信用代码',
  key: 'ucCode',
  render: (h, params) => {
    return h('span', {
      domProps: {
        title: params.row.ucCode
      }
    }, params.row.ucCode)
  }
}

你可能感兴趣的:(前端vue)