mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
[Doc] Stepper: update demo
This commit is contained in:
parent
18bf6db73b
commit
4d71231436
@ -1,35 +1,63 @@
|
|||||||
<template>
|
<template>
|
||||||
<demo-section>
|
<demo-section>
|
||||||
<demo-block :title="$t('basicUsage')">
|
<van-cell
|
||||||
|
center
|
||||||
|
:title="$t('basicUsage')"
|
||||||
|
>
|
||||||
<van-stepper v-model="stepper1" />
|
<van-stepper v-model="stepper1" />
|
||||||
</demo-block>
|
</van-cell>
|
||||||
|
|
||||||
<demo-block :title="$t('disabled')">
|
<van-cell
|
||||||
|
center
|
||||||
|
:title="$t('step')"
|
||||||
|
>
|
||||||
<van-stepper
|
<van-stepper
|
||||||
v-model="stepper1"
|
v-model="stepper2"
|
||||||
|
step="2"
|
||||||
|
/>
|
||||||
|
</van-cell>
|
||||||
|
|
||||||
|
<van-cell
|
||||||
|
center
|
||||||
|
:title="$t('range')"
|
||||||
|
>
|
||||||
|
<van-stepper
|
||||||
|
v-model="stepper3"
|
||||||
|
:min="5"
|
||||||
|
:max="8"
|
||||||
|
/>
|
||||||
|
</van-cell>
|
||||||
|
|
||||||
|
<van-cell
|
||||||
|
center
|
||||||
|
:title="$t('integer')"
|
||||||
|
>
|
||||||
|
<van-stepper
|
||||||
|
v-model="stepper4"
|
||||||
|
integer
|
||||||
|
/>
|
||||||
|
</van-cell>
|
||||||
|
|
||||||
|
<van-cell
|
||||||
|
center
|
||||||
|
:title="$t('disabled')"
|
||||||
|
>
|
||||||
|
<van-stepper
|
||||||
|
v-model="stepper5"
|
||||||
disabled
|
disabled
|
||||||
/>
|
/>
|
||||||
</demo-block>
|
</van-cell>
|
||||||
|
|
||||||
<demo-block :title="$t('asyncChange')">
|
<van-cell
|
||||||
|
center
|
||||||
|
:title="$t('asyncChange')"
|
||||||
|
>
|
||||||
<van-stepper
|
<van-stepper
|
||||||
:value="stepper2"
|
:value="stepper6"
|
||||||
integer
|
|
||||||
async-change
|
async-change
|
||||||
@change="onChange"
|
@change="onChange"
|
||||||
/>
|
/>
|
||||||
</demo-block>
|
</van-cell>
|
||||||
|
|
||||||
<demo-block :title="$t('advancedUsage')">
|
|
||||||
<van-stepper
|
|
||||||
v-model="stepper3"
|
|
||||||
integer
|
|
||||||
:min="5"
|
|
||||||
:max="40"
|
|
||||||
:step="2"
|
|
||||||
:default-value="9"
|
|
||||||
/>
|
|
||||||
</demo-block>
|
|
||||||
</demo-section>
|
</demo-section>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -37,9 +65,15 @@
|
|||||||
export default {
|
export default {
|
||||||
i18n: {
|
i18n: {
|
||||||
'zh-CN': {
|
'zh-CN': {
|
||||||
|
step: '步长设置',
|
||||||
|
range: '限制输入范围',
|
||||||
|
integer: '限制输入整数',
|
||||||
asyncChange: '异步变更'
|
asyncChange: '异步变更'
|
||||||
},
|
},
|
||||||
'en-US': {
|
'en-US': {
|
||||||
|
step: 'Step',
|
||||||
|
range: 'Range',
|
||||||
|
integer: 'Integer',
|
||||||
asyncChange: 'Async Change',
|
asyncChange: 'Async Change',
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -47,8 +81,11 @@ export default {
|
|||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
stepper1: 1,
|
stepper1: 1,
|
||||||
stepper2: 10,
|
stepper2: 1,
|
||||||
stepper3: null
|
stepper3: 1,
|
||||||
|
stepper4: 1,
|
||||||
|
stepper5: 1,
|
||||||
|
stepper6: 1
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -61,7 +98,7 @@ export default {
|
|||||||
this.changing = true;
|
this.changing = true;
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
this.changing = false;
|
this.changing = false;
|
||||||
this.stepper2 = value;
|
this.stepper6 = value;
|
||||||
}, 500);
|
}, 500);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -70,8 +107,6 @@ export default {
|
|||||||
|
|
||||||
<style lang="less">
|
<style lang="less">
|
||||||
.demo-stepper {
|
.demo-stepper {
|
||||||
background-color: #fff;
|
|
||||||
|
|
||||||
.van-stepper {
|
.van-stepper {
|
||||||
margin-left: 15px;
|
margin-left: 15px;
|
||||||
}
|
}
|
||||||
|
@ -26,6 +26,24 @@ export default {
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Step
|
||||||
|
|
||||||
|
```html
|
||||||
|
<van-stepper v-model="value" step="2" />
|
||||||
|
```
|
||||||
|
|
||||||
|
### Range
|
||||||
|
|
||||||
|
```html
|
||||||
|
<van-stepper v-model="value" min="5" max="8" />
|
||||||
|
```
|
||||||
|
|
||||||
|
### Integer
|
||||||
|
|
||||||
|
```html
|
||||||
|
<van-stepper v-model="value" integer />
|
||||||
|
```
|
||||||
|
|
||||||
### Disabled
|
### Disabled
|
||||||
|
|
||||||
```html
|
```html
|
||||||
@ -66,19 +84,6 @@ export default {
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
### Advanced Usage
|
|
||||||
|
|
||||||
```html
|
|
||||||
<van-stepper
|
|
||||||
v-model="value"
|
|
||||||
integer
|
|
||||||
:min="5"
|
|
||||||
:max="40"
|
|
||||||
:step="2"
|
|
||||||
:default-value="9"
|
|
||||||
/>
|
|
||||||
```
|
|
||||||
|
|
||||||
## API
|
## API
|
||||||
|
|
||||||
### Props
|
### Props
|
||||||
|
@ -2,17 +2,41 @@
|
|||||||
|
|
||||||
exports[`renders demo correctly 1`] = `
|
exports[`renders demo correctly 1`] = `
|
||||||
<div>
|
<div>
|
||||||
<div>
|
<div class="van-cell van-cell--center">
|
||||||
<div class="van-stepper"><button class="van-stepper__minus van-stepper__minus--disabled"></button><input type="number" role="spinbutton" aria-valuemax="Infinity" aria-valuemin="1" aria-valuenow="1" class="van-stepper__input"><button class="van-stepper__plus"></button></div>
|
<div class="van-cell__title"><span>基础用法</span></div>
|
||||||
|
<div class="van-cell__value">
|
||||||
|
<div class="van-stepper"><button class="van-stepper__minus van-stepper__minus--disabled"></button><input type="number" role="spinbutton" aria-valuemax="Infinity" aria-valuemin="1" aria-valuenow="1" class="van-stepper__input"><button class="van-stepper__plus"></button></div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div class="van-cell van-cell--center">
|
||||||
<div class="van-stepper"><button class="van-stepper__minus van-stepper__minus--disabled"></button><input type="number" role="spinbutton" aria-valuemax="Infinity" aria-valuemin="1" aria-valuenow="1" disabled="disabled" class="van-stepper__input"><button class="van-stepper__plus van-stepper__plus--disabled"></button></div>
|
<div class="van-cell__title"><span>步长设置</span></div>
|
||||||
|
<div class="van-cell__value">
|
||||||
|
<div class="van-stepper"><button class="van-stepper__minus van-stepper__minus--disabled"></button><input type="number" role="spinbutton" aria-valuemax="Infinity" aria-valuemin="1" aria-valuenow="1" class="van-stepper__input"><button class="van-stepper__plus"></button></div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div class="van-cell van-cell--center">
|
||||||
<div class="van-stepper"><button class="van-stepper__minus"></button><input type="number" role="spinbutton" aria-valuemax="Infinity" aria-valuemin="1" aria-valuenow="10" class="van-stepper__input"><button class="van-stepper__plus"></button></div>
|
<div class="van-cell__title"><span>限制输入范围</span></div>
|
||||||
|
<div class="van-cell__value">
|
||||||
|
<div class="van-stepper"><button class="van-stepper__minus van-stepper__minus--disabled"></button><input type="number" role="spinbutton" aria-valuemax="8" aria-valuemin="5" aria-valuenow="5" class="van-stepper__input"><button class="van-stepper__plus"></button></div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div class="van-cell van-cell--center">
|
||||||
<div class="van-stepper"><button class="van-stepper__minus"></button><input type="number" role="spinbutton" aria-valuemax="40" aria-valuemin="5" aria-valuenow="9" class="van-stepper__input"><button class="van-stepper__plus"></button></div>
|
<div class="van-cell__title"><span>限制输入整数</span></div>
|
||||||
|
<div class="van-cell__value">
|
||||||
|
<div class="van-stepper"><button class="van-stepper__minus van-stepper__minus--disabled"></button><input type="number" role="spinbutton" aria-valuemax="Infinity" aria-valuemin="1" aria-valuenow="1" class="van-stepper__input"><button class="van-stepper__plus"></button></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="van-cell van-cell--center">
|
||||||
|
<div class="van-cell__title"><span>禁用状态</span></div>
|
||||||
|
<div class="van-cell__value">
|
||||||
|
<div class="van-stepper"><button class="van-stepper__minus van-stepper__minus--disabled"></button><input type="number" role="spinbutton" aria-valuemax="Infinity" aria-valuemin="1" aria-valuenow="1" disabled="disabled" class="van-stepper__input"><button class="van-stepper__plus van-stepper__plus--disabled"></button></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="van-cell van-cell--center">
|
||||||
|
<div class="van-cell__title"><span>异步变更</span></div>
|
||||||
|
<div class="van-cell__value">
|
||||||
|
<div class="van-stepper"><button class="van-stepper__minus van-stepper__minus--disabled"></button><input type="number" role="spinbutton" aria-valuemax="Infinity" aria-valuemin="1" aria-valuenow="1" class="van-stepper__input"><button class="van-stepper__plus"></button></div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
|
@ -26,6 +26,24 @@ export default {
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### 步长设置
|
||||||
|
|
||||||
|
```html
|
||||||
|
<van-stepper v-model="value" step="2" />
|
||||||
|
```
|
||||||
|
|
||||||
|
### 限制输入范围
|
||||||
|
|
||||||
|
```html
|
||||||
|
<van-stepper v-model="value" min="5" max="8" />
|
||||||
|
```
|
||||||
|
|
||||||
|
### 限制输入整数
|
||||||
|
|
||||||
|
```html
|
||||||
|
<van-stepper v-model="value" integer />
|
||||||
|
```
|
||||||
|
|
||||||
### 禁用状态
|
### 禁用状态
|
||||||
|
|
||||||
通过设置`disabled`属性来禁用 stepper
|
通过设置`disabled`属性来禁用 stepper
|
||||||
@ -68,20 +86,6 @@ export default {
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
### 高级用法
|
|
||||||
|
|
||||||
可以对组件设置`step`、`min`、`max`属性
|
|
||||||
|
|
||||||
```html
|
|
||||||
<van-stepper
|
|
||||||
v-model="value"
|
|
||||||
integer
|
|
||||||
:min="5"
|
|
||||||
:max="40"
|
|
||||||
:step="2"
|
|
||||||
/>
|
|
||||||
```
|
|
||||||
|
|
||||||
## API
|
## API
|
||||||
|
|
||||||
### Props
|
### Props
|
||||||
|
Loading…
x
Reference in New Issue
Block a user