We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
答案:
一、循环遍历的时候:小程序是wx:for="list",而Vue是v-for="info in list"
二、调用data模型的时候:小程序是this.data.uinfo,而Vue是this.uinfo;给模型赋值也不一样,小程序是this.setData({uinfo:1}),而Vue是直接this.uinfo=1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
答案:
一、循环遍历的时候:小程序是wx:for="list",而Vue是v-for="info in list"
二、调用data模型的时候:小程序是this.data.uinfo,而Vue是this.uinfo;给模型赋值也不一样,小程序是this.setData({uinfo:1}),而Vue是直接this.uinfo=1
The text was updated successfully, but these errors were encountered: