前端高阶1 - Vue3 + TS - 9-computed计算属性 - computed购物车案例

65 阅读1分钟
  • computed购物车案例

    • 进行总价的计算
    • $total = computed(() => {

      • // 累加器 reduce(回调函数()=>{}, 初始值0)
      • return data.reduce((prev, next) => {

        • return prev + (next.num * next.price)
      • }, 0)
    • })