vue3.0+antdVue2.0结合插槽slots的使用方式
首先在table中<a-table ...><template #action="{ record }"><span class="action"><a>移除</a></span></template></a-table>const columns = [{title: '操作',key: 'actio
·
首先在table中
<a-table ...>
<template #action="{ record }">
<span class="action">
<a>移除</a>
</span>
</template>
</a-table>
const columns = [{
title: '操作',
key: 'action',
slots: { customRender: 'action' },
}
在form表单的form-item中,正常是在a-form-item直接设置label='啥啥啥',需要插槽的时候
<a-form-item>
<template #label>
<span style="color: red">* </span>
<span>展示时间</span>
</template>
...
</a-form-item>
更多推荐
已为社区贡献5条内容
所有评论(0)