VueJS nested child, template, inner template, components

VueJS nested child, template, inner template, components

In this Post We Will Explain About is VueJS nested child, template, inner template, components With Example and Demo.Welcome on Pakainfo.com – Examples, The best For Learn web development Tutorials,Demo with Example! Hi Dear Friends here u can know to nested componets in vuejs Example

In this post we will show you Best way to implement vuejs nested Dynamic components, hear for Vuejs nested components with inline-template with Download .we will give you demo,Source Code and examples for implement Step By Step Good Luck!.

Include External Libs

https://unpkg.com/[email protected]/dist/vue.js

index.html

<div id="liveApp">
    <b>Separate Pakainfo.com top level components:</b>
    <firstWizard>
        <step1 name="first">Setp by step Live works</step1>
        <step1 name="second">product 2</step1>
    </firstWizard>
    
    <hr/>
    
    <b>Setp 2 as a vuejs sub component of second secondWizard</b>
    <secondWizard>
        <step2 name="first">This fails</step2>
        <step2 name="second">product 2</step2>
    </secondWizard>

    <hr/>

    <b>Separate top level components with communication:</b>
    <thirdWizard>
        <step title="We communicate"></step>
        <step title="product 2"></step>
    </thirdWizard>
</div>

index.js

// First OPTION 1
Vue.component('firstWizard', {
    template: '<ul> <content></content> </ul>'
});
Vue.component('step1', {
    props: { name: { type: String, required: true } },
    template: '<li id="wizard-step-{{name}}"> <content></content> </li>'
});

//Second OPTION 2
Vue.component('secondWizard', {
    template: '<ul> <content></content> </ul>',
    components: {
        'step2': {
            props: { name: { type: String, required: true } },
            template: '<li id="wizard-step-{{name}}"> <content></content> </li>'
        }
    }
});

//Third OPTION 3
Vue.component('thirdWizard', {
    data: function() {
        return { sublist: [] }
    },
    events: {
        'register-step': function(child) {
            this.sublist.push(child.title);
            console.log(this.sublist);
    	}
    },
    template: '<ul> <content></content> </ul> <p>Wizard\'s data: {{$data | json }}</p>',
});
Vue.component('step', {
    props: {
        title: { type: String, required: true }
    },
    created: function()  { this.$dispatch('register-step', this) },
    template: '<li> {{title}} </li>',
});

var liveApp = new Vue({ el: '#liveApp' });

You are Most welcome in my youtube Channel Please subscribe my channel. and give me FeedBack.
More Details……
Angularjs Example

vuejs nested Dynamic components

Example

I hope you have Got What is Access Parent Component Data from the Nested Child component And how it works.I would Like to have FeedBack From My Blog(Pakainfo.com) readers.Your Valuable FeedBack,Any Question,or any Comments about This Article(Pakainfo.com) Are Most Always Welcome.