vuecssuiant-designantdreactantantd-vueenterprisefrontendui-designvue-antdvue-antd-uivue3vuecomponent
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
1.4 KiB
77 lines
1.4 KiB
<docs> |
|
--- |
|
order: 11 |
|
title: |
|
zh-CN: 后缀图标 |
|
en-US: Suffix |
|
--- |
|
|
|
## zh-CN |
|
|
|
自定义后缀图标 |
|
|
|
## en-US |
|
|
|
Custom suffix icon |
|
|
|
</docs> |
|
<template> |
|
<a-space> |
|
<a-cascader |
|
v-model:value="value1" |
|
style="margin-top: 1rem" |
|
:options="options" |
|
placeholder="Please select" |
|
> |
|
<template #suffixIcon><smile-outlined class="test" /></template> |
|
</a-cascader> |
|
<a-cascader |
|
v-model:value="value2" |
|
suffix-icon="ab" |
|
style="margin-top: 1rem" |
|
:options="options" |
|
placeholder="Please select" |
|
/> |
|
</a-space> |
|
</template> |
|
<script lang="ts" setup> |
|
import { SmileOutlined } from '@ant-design/icons-vue'; |
|
import { ref } from 'vue'; |
|
import type { CascaderProps } from 'ant-design-vue'; |
|
const options: CascaderProps['options'] = [ |
|
{ |
|
value: 'zhejiang', |
|
label: 'Zhejiang', |
|
children: [ |
|
{ |
|
value: 'hangzhou', |
|
label: 'Hangzhou', |
|
children: [ |
|
{ |
|
value: 'xihu', |
|
label: 'West Lake', |
|
}, |
|
], |
|
}, |
|
], |
|
}, |
|
{ |
|
value: 'jiangsu', |
|
label: 'Jiangsu', |
|
children: [ |
|
{ |
|
value: 'nanjing', |
|
label: 'Nanjing', |
|
children: [ |
|
{ |
|
value: 'zhonghuamen', |
|
label: 'Zhong Hua Men', |
|
}, |
|
], |
|
}, |
|
], |
|
}, |
|
]; |
|
const value1 = ref<string[]>([]); |
|
const value2 = ref<string[]>([]); |
|
</script>
|
|
|