ant-design-vue/components/input-number/demo/digit.vue

43 lines
788 B
Vue
Raw Blame History

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.

<docs>
---
order: 3
title:
zh-CN: 高精度小数
en-US: High precision decimals
---
## zh-CN
通过 `stringMode` 开启高精度小数支持`change` 事件将返回 string 类型
对于旧版浏览器你需要 BigInt polyfill
## en-US
Use `stringMode` to support high precision decimals support.
`change` will return string value instead. You need polyfill of BigInt if browser not support.
</docs>
<template>
<a-input-number
v-model:value="value"
style="width: 200px"
:min="0"
:max="10"
:step="0.00000000000001"
string-mode
/>
</template>
<script lang="ts">
import { defineComponent, ref } from 'vue';
export default defineComponent({
setup() {
const value = ref<string>('1');
return {
value,
};
},
});
</script>