mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-01-24 10:33:50 +08:00
chore(demo): 自定义列的helpMessage增加tsx和h函数渲染的数据
This commit is contained in:
parent
c373ffd3bf
commit
8ef39def79
@ -27,8 +27,8 @@
|
||||
</BasicTable>
|
||||
</div>
|
||||
</template>
|
||||
<script lang="ts">
|
||||
import { defineComponent } from 'vue';
|
||||
<script lang="tsx">
|
||||
import { defineComponent, h } from 'vue';
|
||||
import { BasicTable, useTable, BasicColumn, TableImg } from '/@/components/Table';
|
||||
import { Tag, Avatar } from 'ant-design-vue';
|
||||
import { demoListApi } from '/@/api/demo/table';
|
||||
@ -37,12 +37,14 @@
|
||||
{
|
||||
title: 'ID',
|
||||
dataIndex: 'id',
|
||||
helpMessage: <div>这个是tsx渲染出来的helpMessage</div>,
|
||||
// slots: { customRender: 'id' },
|
||||
},
|
||||
{
|
||||
title: '头像',
|
||||
dataIndex: 'avatar',
|
||||
width: 100,
|
||||
helpMessage: h('div', '这是vue h函数渲染出来的helpMessage'),
|
||||
// slots: { customRender: 'avatar' },
|
||||
},
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user