ant-design/components/cascader/demo/basic.md

43 lines
650 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 0
title: 基本
---
2015-12-29 11:46:13 +08:00
2015-12-29 18:24:21 +08:00
省市区级联。
2015-12-29 11:46:13 +08:00
````jsx
import { Cascader } from 'antd';
const options = [{
value: 'zhejiang',
label: '浙江',
children: [{
value: 'hangzhou',
label: '杭州',
children: [{
value: 'xihu',
label: '西湖',
}],
}],
}, {
value: 'jiangsu',
label: '江苏',
children: [{
value: 'nanjing',
label: '南京',
children: [{
value: 'zhonghuamen',
label: '中华门',
}],
}],
}];
function onChange(value) {
console.log(value);
}
ReactDOM.render(
2016-04-01 13:51:26 +08:00
<Cascader options={options} onChange={onChange} placeholder="请选择地区" />
2015-12-29 11:46:13 +08:00
, mountNode);
````