之前写了关于vue通过watch对input做字数限定的方法,最近需要回顾,就顺便发到随笔上了
/div>
效果
items:{
handler:function(){
var _this = this;
var _sum = 100; //字体限制为100个
_this.$refs.count.setAttribute("maxlength",_sum);
_this.number= _sum- _this.$refs.count.value.length;
},deep:true
}
}
})
原文链接:https://www.f2er.com/vue/37875.html