Open Hyachin opened 3 months ago
代码如下,我在页面上先输入56,再在5和6中间加了小数点,之后点的保存,页面上输入框直接没有数据了,打印出来的也是56。
<template> <view class="content"> <uni-easyinput v-model="textword" type="number"></uni-easyinput> <button @click="save">保存</button> </view> </template> <script> export default { data() { return { textword: '', } }, methods: { save() { console.log('this.textword', this.textword) } } } </script>
使用的 cli 还是 hx创建的项目?是什么版本?
代码如下,我在页面上先输入56,再在5和6中间加了小数点,之后点的保存,页面上输入框直接没有数据了,打印出来的也是56。