Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用子组件中的 this.values.input_name = 'some value' 更新输入或通过子自定义组件中的 javascript 更改时,新值会正确显示在父组件的输入中,但不会在保存时更新。如果手动更改值,一切都会按预期进行。
有没有办法从子组件调用父组件上的输入的 onchange 事件?你可以帮帮我吗?。
谢谢。
更新输入值的代码是:
this.$store.dispatch('stageValue', { field: '', value: '' });
感谢这个答案,我可以解决这个问题