chargement de vue doit etre en une seule ligne, sinon on ne peut pas accéder app.rechargerJson()

This commit is contained in:
Christophe 2021-01-26 16:41:39 +01:00
parent 07e0af8704
commit 9cecc59e3f
2 changed files with 2 additions and 6 deletions

View file

@ -645,6 +645,4 @@ const gamuTable = {
}, },
}; };
let app = Vue.createApp(gamuTable); let app = Vue.createApp(gamuTable).component('vue-select', window.VueNextSelect).mount('#app');
app.component('vue-select', window.VueNextSelect);
app.mount('#app');

View file

@ -624,6 +624,4 @@ var gamuTable = {
} }
} }
}; };
var app = Vue.createApp(gamuTable); var app = Vue.createApp(gamuTable).component('vue-select', window.VueNextSelect).mount('#app');
app.component('vue-select', window.VueNextSelect);
app.mount('#app');