naive-ui/demo/documentation/components/slider/zhCN/basic.md
2020-02-04 18:39:05 +08:00

25 lines
249 B
Markdown

# 基础用法
```html
<n-slider
v-model="value"
:step="10"
/>
<n-input-number
size="small"
v-model="value"
/>
```
```js
export default {
data () {
return {
value: 50
}
}
}
```
```css
.n-slider {
margin-bottom: 8px;
}
```