<textarea value="" placeholder="请输入您对产品或其他方面的意见" v-model="textContent" maxlength="180" @input="descInput"/>
data() {
return {
value:0,//字数
textContent:''//内容
}
},
onShow() {
this.textContent = uni.getStorageSync('textContent') || '';
this.value = this.textContent.length;
},
methods: {
//字数限制
descInput(e) {
this.value = e.detail.cursor;
this.textContent = e.detail.value;
}
效果如图: