效果图
在使用BasicTable的页面添加引用,这里随便弄了个icon
import { GameController } from "@vicons/ionicons5"
自定义列
const actionColumn = reactive({
width: 180,
title: "操作",
key: "action",
fixed: "right",
render(record: any) {
return h(TableAction, {
style: "text",
actions: [
{
label: "",
icon: GameController,
toolTip: "查看",
onClick: view.bind(null, record)
}
]
});
}
});
这里label设置为空,icon就是刚刚导入的图标,toolTip是自定义属性,在原来封装好的组件里添加的,不然只有一个图标可能不是很明确。
自定义的如下:
打开components/Table/src/components/TableAction.vue ,修改n-button 里的内容。
<n-button v-bind="action" class="mx-1">
{{ action.label }}
<template #icon v-if="action.hasOwnProperty('icon')">
<n-tooltip trigger="hover">
<template #trigger>
<n-icon :component="action.icon" />
</template>
{{ action.toolTip }}
</n-tooltip>
</template>
</n-button>
然后组件的props添加toolTip字段文章来源:https://www.toymoban.com/news/detail-844638.html
文章来源地址https://www.toymoban.com/news/detail-844638.html
到了这里,关于naive-ui-admin BasicTable 列表操作栏显示图标icon的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!