ant-design/components/time-picker/demo/disabled.md

28 lines
459 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
2016-11-11 16:06:11 +08:00
order: 3
title:
2016-07-26 11:03:44 +08:00
zh-CN: 禁用
en-US: disabled
2016-03-31 09:40:55 +08:00
---
2016-07-26 11:03:44 +08:00
## zh-CN
禁用时间选择。
2016-07-26 11:03:44 +08:00
## en-US
A disabled state of the `TimePicker`.
```tsx
import { TimePicker } from 'antd';
import dayjs from 'dayjs';
import customParseFormat from 'dayjs/plugin/customParseFormat';
2022-05-21 22:14:15 +08:00
import React from 'react';
2022-05-21 22:14:15 +08:00
dayjs.extend(customParseFormat);
2022-05-21 22:14:15 +08:00
const App: React.FC = () => <TimePicker defaultValue={dayjs('12:08:23', 'HH:mm:ss')} disabled />;
export default App;
2019-05-07 14:57:32 +08:00
```