-
Notifications
You must be signed in to change notification settings - Fork 479
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
组织自己的store可以使用这种方法 #14
Comments
最终返回的值是 {
data: {
a: {
numa: 1,
numb: 2
},
b: {
numc: 3,
numd: 4
}
},
getA() {
console.log('a');
},
getB() {
console.log('b');
}
} |
赞,不错~ |
@zwmmm 谢谢老哥。情况是 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
a.js
b.js
store.js
根据page划分store, 不过函数名字就不能重复了
The text was updated successfully, but these errors were encountered: