Vue 指令 v-model 学习

in 前端 with 0 comment
<currency-input v-model="price"></currentcy-input>
// 上行代码是下行的语法糖
<currency-input :value="price" @input="price = arguments[0]"></currency-input>


可以使用修饰符
.lazy - 取代 input 监听 change 事件
.number - 输入字符串转为有效的数字
.trim - 输入首尾空格过滤
<currency-input v-model.number="price"></currentcy-input>
Comments are closed.