输入框无法编辑(使用Element-ui中el-input)


    
        
    

在与后端联调时,可以接收到参数;对 input 进行编辑使用方法 @input 进行输出,可以看到输入的内容,但输入框的数据无跟新。

问题: 视图无更新

解决方法: this.$forceUpdate();


    
    	
    
change(e){
    this.$forceUpdate();
}

你可能感兴趣的:(vue.js,前端,elementui)