2016-04-01 10:12:02 +08:00
|
|
|
---
|
|
|
|
order: 3
|
2016-07-21 10:10:04 +08:00
|
|
|
title:
|
|
|
|
zh-CN: 只读
|
|
|
|
en-US: Read only
|
2016-04-01 10:12:02 +08:00
|
|
|
---
|
2016-03-31 14:43:38 +08:00
|
|
|
|
2016-07-21 10:10:04 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2016-03-31 14:43:38 +08:00
|
|
|
只读,无法进行鼠标交互。
|
|
|
|
|
2016-07-21 10:10:04 +08:00
|
|
|
## en-US
|
|
|
|
|
|
|
|
Read only, can't use mouse to interact.
|
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
```tsx
|
2016-03-31 14:43:38 +08:00
|
|
|
import { Rate } from 'antd';
|
2022-05-21 22:14:15 +08:00
|
|
|
import React from 'react';
|
2016-03-31 14:43:38 +08:00
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
const App: React.FC = () => <Rate disabled defaultValue={2} />;
|
|
|
|
|
|
|
|
export default App;
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|