gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 05:52:09 24 4
gpt4 key购买 nike

如何将数据从 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 )不起作用,请问有什么帮助吗?

最佳答案

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

关于javascript - 将数据从 Vue 实例传递到 Vue 组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40102121/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com