0👍
- component names should be kebab-case in DOM templates.
- self closing tags are not valid in DOM templates, except for void elements.
- use window[‘vue-expandable-grid’].default
<div id="app">
<expandable-grid></expandable-grid>
</div>
new Vue({
el: "#app",
components: {
ExpandableGrid: window['vue-expandable-grid'].default
}
});
- [Vuejs]-Vue.js table sorting (HTML & Buefy)
- [Vuejs]-Bootstrap Tab with VueJS 1.0.28 not working properly while working with Vue 1.0.18
Source:stackexchange.com