有些情况下在 el-input 是无法输入的,绑定的值动也动不了,删也删不掉,改也改不了可能是以下原因导致
1.可能没更新,使用forceUpdate强制刷新
<el-input type='text' v-model='value' @change='change()'></el-input>
change(){
this.$forceUpdate(); //强制刷新
2.我们有些时候可能会忘记加入v-model属性,来绑定输入框中的值,如果忘记加入了,记得补上
3.可能是input的父标签是 template,这个时候我们需要在template标签中添加slot-scope 属性
<template slot-scope="scope">