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.
ant-design-vue/components/cascader/demo/size.md

1.1 KiB

#### 大小 不同大小的级联选择器。 #### Size Cascade selection box of different sizes.
<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>
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);
    }
  }
}
</script>