在我们使用 element-ui 文本域的时候,有时可能会需要计算输入的文字的总长度的功能,此时我们可以使用 el-textarea 自带的 show-word-limit 属性,但是有一点不好的地方就是会遮挡住我们输入的文字,就像下面这样:
我们可以通过修改样式来解决这个问题:
<el-input type="textarea" v-model="textareaValue" maxlength="500" show-word-limit resize="none" :rows="5" class="textarea-box"></el-input>
.textarea-box {
height: 140px;
border: 1px solid #dcdfe6;
border-radius: 4px;
}
/deep/ .textarea-box .el-textarea__inner {
height: 110px !important;
border: none !important;
}
/deep/ .textarea-box .el-input__count {
position: absolute;
bottom: 0px !important;
right: 13px !important;
}
文章来源:https://www.toymoban.com/news/detail-546421.html
文章来源地址https://www.toymoban.com/news/detail-546421.html
到了这里,关于element ui 文本域el-textarea的计数限制不遮挡输入的文字的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!