我想在一列中呈现选择字段。我阅读了文档,我的任务应该只是解决:在列数组上添加特定列。
{
title: 'Action',
key: 'action',
scopedSlots: {customRender: 'action'},
},
并添加同名的简单插槽
<template v-slot:action>
<a href="javascript:;">action</a>
</template>
但它不起作用。我仍然在列上看到空值。