我正在尝试将数据从组件传递到全局对象。我的组件正常工作,但是作者显示不正确。谁能告诉我我在做什么错?
let store = {
_author: 'Johnnie Walker',
};
Vue.component('post', {
template: '#post-template',
props: ['title', 'author', 'content']
});
var vm = new Vue({
el: '#app',
data: {
author: store,
title: 'Aging Your Own Whisky',
content: 'A bunch of steps and a whole lot of content'
}
});
答案 0 :(得分:3)
store
是一个对象,并且其中有一个名为_author
的属性。
您的data
应该是-
data: {
author: store._author,
title: 'Aging Your Own Whisky',
content: 'A bunch of steps and a whole lot of content'
}