el-input初始化后发现输入框内不能输入内容,解决方法如下:
1 methods: { 2 3 //解决输入框无法输入 4 change() { 5 this.$forceUpdate() 6 }, 7 } 8 9 10