ant-design/components/cascader/demo/disabled-option.md

44 lines
674 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 4
title: 禁用选项
---
2016-01-25 15:31:08 +08:00
通过指定 options 里的 `disabled` 字段。
````jsx
import { Cascader } from 'antd';
const options = [{
value: 'zhejiang',
label: '浙江',
children: [{
value: 'hangzhou',
label: '杭州',
children: [{
value: 'xihu',
label: '西湖',
}],
}],
}, {
value: 'jiangsu',
label: '江苏',
disabled: true,
children: [{
value: 'nanjing',
label: '南京',
children: [{
value: 'zhonghuamen',
label: '中华门',
}],
}],
}];
function onChange(value) {
console.log(value);
}
ReactDOM.render(
<Cascader options={options} onChange={onChange} />
, mountNode);
````