美文网首页
vue:模板

vue:模板

作者: 月光_薛 | 来源:发表于2018-07-17 14:20 被阅读0次

    v-if:input 会出现复用,所以需要添加key
    v-for: “(item,index) of list” :key='index'(唯一的key,提高性能,但是耗性能,一般绑定后端返回的id)
    数组编译方法:(操作数组才会在页面显示)
    Vue 包含一组观察数组的变异方法,所以它们也将会触发视图更新。这些方法如下:

    push()
    pop()
    shift()
    unshift()
    splice()
    sort()
    reverse()(数组取反)

    相关文章

      网友评论

          本文标题:vue:模板

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