Open gouyuwang opened 6 months ago
同问,现在有什么解决办法吗
搜到一种办法:
<template v-for="(item, index) in columns" :slot="item.slotName">
<span :key="index">{{ $t(item.slotName) }}</span>
</template>
{
slotName: 'table.column.id',
dataIndex: 'id',
width: '185px',
scopedSlots: { customRender: 'serial', title: 'table.column.id' },
},
这样可以实现自动刷新
还有一种:
columns: [
{
title: () => this.$t('table.serial'),
scopedSlots: { customRender: 'serial' }
}
]