1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > vue中el-input文本域超出字数限制 字数统计标红

vue中el-input文本域超出字数限制 字数统计标红

时间:2022-12-18 02:05:41

相关推荐

vue中el-input文本域超出字数限制 字数统计标红

html代码:

<el-input type="textarea"placeholder="请输入内容" v-model="textarea" :maxlength="maxlength" show-word-limit //展示字数统计:autosize="{ minRows: 2, maxRows: 4}" //高度能够根据文本内容自动进行调整@input="limitLength"></el-input>

data: {textarea: '',maxlength: 30},methods: {limitLength(value) {//value 为获取到的输入框的值if (value.length >= this.maxlength) {this.$el.querySelector('.el-input__count').style = 'color:red !important'} else {this.$el.querySelector('.el-input__count').style = 'color:#909399 !important'}}},

展示效果如下:

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。