在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
//小程序 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>
|
请发表评论