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.
72 lines
1.1 KiB
72 lines
1.1 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">
|
|
import { defineComponent, 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',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
];
|
|
export default defineComponent({
|
|
setup() {
|
|
return {
|
|
value: ref<string[]>([]),
|
|
options,
|
|
};
|
|
},
|
|
});
|
|
</script>
|