element中关于input框

需求:因为公司用的element版本比较低,就不能用show-word-limit这个属性展示数字统计

 

<el-col :span="24">
          <el-form-item label="考评说明:" label-width="180px">
            <el-input
              type="textarea"
              :rows="6"
              v-model="baseInfoForm.explain"
              autocomplete="off"
              :maxlength="200"
              resize="none"
              style="width: 80%"
              placeholder="请输入考评说明,最多200字"
            ></el-input>
            <div class="countMsg">
              <span v-show="baseInfoForm.explain.length < 200">{{ baseInfoForm.explain.length }}</span>
              <span v-show="baseInfoForm.explain.length == 200" style="color: #FF0000">{{ baseInfoForm.explain.length }}</span>
              /200
            </div>
         </el-form-item>
</el-col>

  

猜你喜欢

转载自www.cnblogs.com/Jerry1208/p/12970868.html