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 2560512 commit 336a686Copy full SHA for 336a686
resources/js/package.js
@@ -135,8 +135,9 @@ function init() {
135
},
136
137
mounted() {
138
+ window.app.config.globalProperties.refs = this.$refs
139
setTimeout(() => {
- const event = new CustomEvent('vue:mounted', { detail: { vue: window.app } })
140
+ const event = new CustomEvent('vue:mounted', { detail: { vue: window.app, rootNode: this } })
141
document.dispatchEvent(event)
142
})
143
@@ -148,6 +149,7 @@ function init() {
148
149
window.app.config.globalProperties = {
150
custom: {},
151
config: window.config,
152
+ refs: {},
153
loadingCount: fetchCount,
154
loading: false,
155
autocompleteFacadeQuery: '',
0 commit comments