提交 d77322dd 编写于 作者: DCloud-WZF's avatar DCloud-WZF 💬

fix(input): 修复step设置无效问题

上级 6242bd8c
......@@ -143,6 +143,10 @@ export const props = /*#__PURE__*/ extend(
type: Boolean,
default: true,
},
step: {
type: String,
default: '0.000000000000000001',
},
},
keyboardProps
)
......
......@@ -117,7 +117,7 @@ export default /*#__PURE__*/ defineBuiltInComponent({
)
const NUMBER_TYPES = ['number', 'digit']
const step = computed(() =>
NUMBER_TYPES.includes(props.type) ? '0.000000000000000001' : ''
NUMBER_TYPES.includes(props.type) ? props.step : ''
)
function onKeyUpEnter(event: Event) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册