微信小程序就是 vue 吗? 财富值8

2016-11-06 18:35发布

微信小程序就是 Vue 吗?
10条回答
明显不是嘛,数据属性更新是这样的
小程序:
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> 

恩,还是有点像。

一周热门 更多>