我仍然收到此错误
[Vue warn]: data functions should return an object:
即使在我的data
属性为函数后返回我的全局状态的副本:
new Vue({
'el': '#app',
'data': function getState() { return _.cloneDeep(state); },
'router': router,
'template': '<Welcome />',
'components': { Welcome }
});
Vue还想要我什么?
答案 0 :(得分:0)
国家必须像
一样出口export default
{
而不喜欢
export const state =
{