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.
65 lines
1.0 KiB
65 lines
1.0 KiB
<docs>
|
|
---
|
|
order: 10
|
|
title:
|
|
zh-CN: 自定义字段名
|
|
en-US: Custom Field Names
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
自定义字段名。
|
|
|
|
## en-US
|
|
|
|
Custom Field Names
|
|
|
|
</docs>
|
|
<template>
|
|
<a-cascader
|
|
v-model:value="value"
|
|
:field-names="{ label: 'name', value: 'code', children: 'items' }"
|
|
:options="options"
|
|
placeholder="Please select"
|
|
/>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue';
|
|
import type { CascaderProps } from 'ant-design-vue';
|
|
const options: CascaderProps['options'] = [
|
|
{
|
|
code: 'zhejiang',
|
|
name: 'Zhejiang',
|
|
items: [
|
|
{
|
|
code: 'hangzhou',
|
|
name: 'Hangzhou',
|
|
items: [
|
|
{
|
|
code: 'xihu',
|
|
name: 'West Lake',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
code: 'jiangsu',
|
|
name: 'Jiangsu',
|
|
items: [
|
|
{
|
|
code: 'nanjing',
|
|
name: 'Nanjing',
|
|
items: [
|
|
{
|
|
code: 'zhonghuamen',
|
|
name: 'Zhong Hua Men',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
];
|
|
const value = ref<string[]>([]);
|
|
</script>
|