vue-element-plus-admin icon indicating copy to clipboard operation
vue-element-plus-admin copied to clipboard

showOverflowTooltip 属性能不能配置在 field 上?

Open romejiang opened this issue 2 years ago • 1 comments

尝试下面两种方式都不行?不能用于 field 上?还是我写的不对?


const crudSchemas = reactive<CrudSchema[]>([
  {
    field: 'answer',
    label: t('common.answer'),
    table: {
      componentProps: {
        showOverflowTooltip: false
      }
    }
  }
])


const crudSchemas = reactive<CrudSchema[]>([
  {
    field: 'answer',
    label: t('common.answer'),
    table: {
        showOverflowTooltip: false
    }
  }
])

romejiang avatar Apr 14 '23 15:04 romejiang

看着像官方的问题,我去弄个最小demo看下

kailong321200875 avatar Apr 17 '23 01:04 kailong321200875