diff --git a/js/gamutable.es6.js b/js/gamutable.es6.js index 3f91578..da75ac3 100644 --- a/js/gamutable.es6.js +++ b/js/gamutable.es6.js @@ -645,6 +645,4 @@ const gamuTable = { }, }; -let app = Vue.createApp(gamuTable); -app.component('vue-select', window.VueNextSelect); -app.mount('#app'); +let app = Vue.createApp(gamuTable).component('vue-select', window.VueNextSelect).mount('#app'); diff --git a/js/gamutable.js b/js/gamutable.js index 0ed3725..18cca7d 100644 --- a/js/gamutable.js +++ b/js/gamutable.js @@ -624,6 +624,4 @@ var gamuTable = { } } }; -var app = Vue.createApp(gamuTable); -app.component('vue-select', window.VueNextSelect); -app.mount('#app'); \ No newline at end of file +var app = Vue.createApp(gamuTable).component('vue-select', window.VueNextSelect).mount('#app'); \ No newline at end of file