ant-design-vue/components/cascader/demo/size.md

67 lines
1.4 KiB
Markdown
Raw Normal View History

2018-03-04 08:02:46 +00:00
<cn>
#### 大小
不同大小的级联选择器。
</cn>
<us>
#### Size
Cascade selection box of different sizes.
</us>
2019-10-09 10:32:23 +00:00
```tpl
2018-03-04 08:02:46 +00:00
<template>
<div>
<a-cascader size="large" :options="options" @change="onChange" /><br /><br />
<a-cascader :options="options" @change="onChange" /><br /><br />
<a-cascader size="small" :options="options" @change="onChange" /><br /><br />
</div>
</template>
<script>
2019-09-28 12:45:07 +00:00
export default {
data() {
return {
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',
},
],
},
],
},
],
};
},
methods: {
onChange(value) {
console.log(value);
},
},
};
2018-03-04 08:02:46 +00:00
</script>
```