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.

24 lines
306 B

# 基本
- order: 0
基本滑动条。
---
````jsx
import { Slider } from 'antd';
9 years ago
ReactDOM.render(<div>
<Slider />
9 years ago
<Slider defaultValue={65} disabled />
</div>
, document.getElementById('components-slider-demo-basic'));
````
<style>
.code-box-demo .ant-slider {
margin-bottom: 50px;
}
</style>