vue slot no slot

1070106

by Syuan Shih

HTML

<div id="app">
    <child>NO SLOT: {{ msg }}</child>
    <p>{{ msg }}</p>
</div>

JavaScript

Vue.component('child', {
    template: '<div><p>{{ msg }}<p></div>',
    data: function() {
        return {
            msg: 'Component Message'
        }
    }
})

var vm = new Vue ({
    el: '#app',
    data: {
        msg: 'Vue instance Message'
    }
})