55 lines
965 B
Markdown
55 lines
965 B
Markdown
|
|
<cn>
|
|
#### 禁用选项
|
|
通过指定 options 里的 `disabled` 字段。
|
|
</cn>
|
|
|
|
<us>
|
|
#### Disabled option
|
|
Disable option by specifying the `disabled` property in `options`.
|
|
</us>
|
|
|
|
```html
|
|
<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>
|
|
```
|
|
|