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.

20 lines
306 B

# 基本
- order: 0
9 years ago
一个通用的日历面板,支持年/月切换。
---
````jsx
import { Calendar } from 'antd';
function onChange(value) {
console.log(value);
9 years ago
}
ReactDOM.render(
<Calendar type="date" onChange={onChange} />
, document.getElementById('components-calendar-demo-basic'));
````