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.
36 lines
444 B
36 lines
444 B
<cn>
|
|
#### 基本
|
|
数字输入框。
|
|
</cn>
|
|
|
|
<us>
|
|
#### Basic
|
|
Numeric-only input box.
|
|
</us>
|
|
|
|
```html
|
|
<template>
|
|
<div>
|
|
<a-input-number :min="1" :max="10" v-model="value" @change="onChange" />
|
|
当前值:{{value}}
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
value: 3
|
|
}
|
|
},
|
|
methods: {
|
|
onChange(value) {
|
|
console.log('changed', value);
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
```
|
|
|
|
|
|
|