vue 中 computed 传参

<ul class="product-list clearfix">
      <li
         v-for="(item, index) in wishList"
         :key="index"
         :class="{ 'edit-style': show }"
       >
           <p v-if="!hidePriceModule(item)" class="price">
             {{ item.price }}
           </p>
       </li>
  </ul>
computed: {
    hidePriceModule() {
      return wishsItem => {
        return wishsItem.ip_from_uk
      }
    }
  },
上一篇:PTA 7-4 是否同一棵二叉搜索树 (25 分)


下一篇:v-for和v-if不能同时使用