Vue Tests - child and parent base
by joplomacedo
HTML
<div id="app">
</div>
Vue
Vue.component('the-parent', {
template: `
<div>
</div>
`,
data() {
return {
};
}
computed: {},
methods: {},
created() {},
mounted() {},
})
Vue.component('the-child', {
template: `
<div>
</div>
`,
data() {
return {
};
}
computed: {},
methods: {},
created() {},
mounted() {},
})
new Vue({
el: "#app",
data: {
},
methods: {
}
})