vue computed传参数

computed: {
  showStart: function () {
      return function (item) {
          var contentType = item.contentType
          if (contentType != null && contentType.trim() != '') {
              var contentTypeList = item.contentType.split(',')
              for (var i of contentTypeList) {
                  if (i == 'z') {
                      return true
                  }
              }
          }
          return false
      }
  }
}
上一篇:Vue中的computed属性


下一篇:Vue中的v-for和v-if为什么不能写在一起