1. 程式人生 > >微信小程式與vue的區別,知乎回答!!!

微信小程式與vue的區別,知乎回答!!!

明顯不是嘛,資料屬性更新是這樣的
小程式:
Page({
  data: {
    items: []
  },
  onLoad: function(options) {
    this.setData({
      items: [1,2,3]    
    })
  }
})

Vue:
new Vue({
  data: {
    items: []
  },
  mounted () {
    this.items = [1, 2, 3]
  }
})

小程式:
<text wx:for="{{items}}">{{item}}</text>

Vue:
<text v-for="item in items">{{item}}</text>

恩,還是有點像。

作者:Awee
連結:https://www.zhihu.com/question/50952587/answer/123505393
來源:知乎
著作權歸作者所有,轉載請聯絡作者獲得授權。