We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f599fdb commit 937de26Copy full SHA for 937de26
src/Vue/assets/dist/render_controller.js
@@ -23,6 +23,11 @@ class default_1 extends Controller {
23
this.props = shallowReactive({ ...props });
24
watch(this.props, (props) => {
25
this.propsValue = toRaw(props);
26
+ this.dispatchEvent('props-update', {
27
+ componentName: this.componentValue,
28
+ props: this.props,
29
+ app: this.app,
30
+ });
31
}, { flush: 'post' });
32
}
33
connect() {
src/Vue/assets/src/render_controller.ts
@@ -60,6 +60,11 @@ export default class extends Controller<Element & { __vue_app__?: App<Element> }
60
this.props,
61
(props) => {
62
63
64
65
66
67
68
},
69
{ flush: 'post' }
70
);
0 commit comments