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/digit.md

29 lines
552 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<cn>
#### 小数
和原生的数字输入框一样value 的精度由 step 的小数位数决定。
</cn>
<us>
#### Decimals
A numeric-only input box whose values can be increased or decreased using a decimal step. The number of decimals (also known as precision) is determined by the step prop.
</us>
```html
<template>
<a-input-number :min="0" :max="10" :step="0.1" @change="onChange" />
</template>
<script>
export default {
methods: {
onChange(value) {
console.log('changed', value);
},
},
}
</script>
```