chargement de vue doit etre en une seule ligne, sinon on ne peut pas accéder app.rechargerJson()
This commit is contained in:
parent
07e0af8704
commit
9cecc59e3f
2 changed files with 2 additions and 6 deletions
|
@ -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');
|
|
||||||
|
|
|
@ -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');
|
|
Loading…
Add table
Reference in a new issue