Vue监听文本框实时输入限制输入长度

时间:2022-07-24
本文章向大家介绍Vue监听文本框实时输入限制输入长度,主要内容包括其使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。
  <textarea v-model="value" placeholder="输入内容" @input="inputArea()"></textarea>
 new Vue({
        el: ".box",
        data: {
            value: "",
            maxLength: 100,
            currentLength: 0
        },
         methods: {
	        inputArea() {
              this.currentLength = this.value.length
              if (this.currentLength > this.maxLength) {
                  this.currentLength = 100
                  this.value = this.value.slice(0, 100)
              }
          },
      }
  })