微信小程序和vue循环的区别

vue:

<view wx:for="{{array}}"> {{index}}: {{item}}</view>//每一项默认为item

微信小程序:

<li v-for="(item, index) in array">{{index}}: {{item}}</li> //每一项需要自定义名称

猜你喜欢

转载自blog.csdn.net/sk161205/article/details/88121176