ant-design-vue/antdv-demo/docs/cascader/demo/disabled-option.md

1.2 KiB

#### ็ฆ็”จ้€‰้กน ้€š่ฟ‡ๆŒ‡ๅฎš options ้‡Œ็š„ `disabled` ๅญ—ๆฎตใ€‚ #### Disabled option Disable option by specifying the `disabled` property in `options`.
<template>
  <a-cascader :options="options" @change="onChange" />
</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',
          disabled: true,
          children: [
            {
              value: 'nanjing',
              label: 'Nanjing',
              children: [
                {
                  value: 'zhonghuamen',
                  label: 'Zhong Hua Men',
                },
              ],
            },
          ],
        },
      ],
    };
  },
  methods: {
    onChange(value) {
      console.log(value);
    },
  },
};
</script>