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.
ant-design-vue/components/input-number/demo/basic.md

444 B

#### 基本 数字输入框。 #### Basic Numeric-only input box.
<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>