将数据从 Vue 实例传递到 Vue 组件

Pass the data from Vue instance to the Vue component

如何将数据从 Vue 实例传递到 Vue 组件?我正在尝试对驻留在我的组件模板中的 'li' 执行 'v-for',这里是 fiddle

HTML

<div id="app">
    <my-notification></my-notification>
</div>

<template id="my-template">
    <ul>
        <li v-for="nn in notifications">{{ nn }}</li>
    </ul>
</template>

Vue 脚本

Vue.component('my-notification',{
    template : '#my-template',
});

new Vue({
    el : '#app',
    data : {
        notifications : ['notification 1','notification 2','notification 3']
    }
});

不幸的是,到目前为止我尝试了什么(见我的fiddle)没有用,请帮忙吗?

我更新了我的代码

<div id="app">
    <my-notification :notification="notifications"></my-notification>
</div>

<template id="my-template">
    <ul>
        <li v-for="nn in nns">{{ nn }}</li>
    </ul>
</template>

Vue.component('my-notification',{
    template : '#my-template',
    props : ['notification'],
    data : function(){
        return {
            nns : this.notification
        }
    }
});

new Vue({
    el : '#app',
    data : {
        notifications : ['notification 1','notification 2','notification 3']
    }
});

如果你的应用程序变得更大,你也可以考虑vuex