美文网首页H5-vue学习
小程序 Now you can provide attr `

小程序 Now you can provide attr `

作者: wodeph | 来源:发表于2021-10-25 18:52 被阅读0次

    Now you can provide attr `wx:key` for a `wx:for` to improve performance.

      6 | </view>

      7 | <view class="todos">

    >  8 |      <view class="item" wx:for="{{ todos }} wx:key='i'">

        |      ^

      9 |            <icon type="{{item1.completed ? 'success' : 'circle'}}"></icon>

      10 |            <text>{{item1.name}}</text>

      11 |            <icon type="clear" size="16" />

    消除警告 :在wx:for后面添加  wx:key="key"   

    相关文章

      网友评论

        本文标题:小程序 Now you can provide attr `

        本文链接:https://www.haomeiwen.com/subject/gslsaltx.html