{
title: '点赞数',
key: 'dianzanshu',
width: '100',
render(row) {
return h('div', [
h('div', h(NTag, { type: 'success' }, { default: () => `展示:${0}` })),
h(
'div',
h(NTag, { type: 'info', style: { marginTop: '20px' } }, { default: () => `实际:${0}` }),
),
]);
},
},