1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| <template>
| <span>
| <slot></slot>
| {{ title }}
| <FormOutlined />
| </span>
| </template>
| <script lang="ts">
| import { defineComponent } from 'vue';
| import { FormOutlined } from '@ant-design/icons-vue';
|
| export default defineComponent({
| name: 'EditTableHeaderIcon',
| components: { FormOutlined },
| props: { title: { type: String, default: '' } },
| });
| </script>
|
|