0👍
Try to do
const app = new Vue({
render: (h) => h(Demo)
});
app.$mount('#app')
and change
<div id="app">
<demo></demo>
</div>
to <div id="app"></div>
- [Vuejs]-Only group some rows on Ag-Grid
- [Vuejs]-VueJS : Trigger function to fill up a select at the loading of the form
Source:stackexchange.com