[Vuejs]-Vue.js + .netcore MPA

0👍

I believe your data function must return an object so:

Vue.component('childapp',
{
    data: function() {
        return {
            textaa: 'component text'
        }
    }
}

Leave a comment