Skip to content

Commit

Permalink
chore(demo): 自定义列的helpMessage增加tsx和h函数渲染的数据
Browse files Browse the repository at this point in the history
  • Loading branch information
wangjue666 committed Nov 7, 2023
1 parent c373ffd commit 8ef39de
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/views/demo/table/CustomerCell.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand All @@ -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' },
},
{
Expand Down

0 comments on commit 8ef39de

Please sign in to comment.