90 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Vue
		
	
	
			
		
		
	
	
			90 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Vue
		
	
	
| <docs>
 | |
| ---
 | |
| order: 11
 | |
| title:
 | |
|   zh-CN: 后缀图标
 | |
|   en-US: Suffix
 | |
| ---
 | |
| 
 | |
| ## zh-CN
 | |
| 
 | |
| 自定义后缀图标
 | |
| 
 | |
| ## en-US
 | |
| 
 | |
| Custom suffix icon
 | |
| 
 | |
| </docs>
 | |
| <template>
 | |
|   <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"
 | |
|   />
 | |
| </template>
 | |
| <script lang="ts">
 | |
| import { SmileOutlined } from '@ant-design/icons-vue';
 | |
| import { defineComponent, ref } from 'vue';
 | |
| interface Option {
 | |
|   value: string;
 | |
|   label: string;
 | |
|   children?: Option[];
 | |
| }
 | |
| const options: Option[] = [
 | |
|   {
 | |
|     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',
 | |
|           },
 | |
|         ],
 | |
|       },
 | |
|     ],
 | |
|   },
 | |
| ];
 | |
| export default defineComponent({
 | |
|   components: {
 | |
|     SmileOutlined,
 | |
|   },
 | |
|   setup() {
 | |
|     return {
 | |
|       value1: ref<string[]>([]),
 | |
|       value2: ref<string[]>([]),
 | |
|       options,
 | |
|     };
 | |
|   },
 | |
| });
 | |
| </script>
 |