summaryrefslogtreecommitdiff
path: root/iridescence/src/components/cart/Totals.vue
blob: 7b95462439a975c280978374f6a54a1517ac1674 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<template>
  <div>
    <h1 class="subtitle has-text-centered">
      Summary
    </h1>
    <h1 class="title has-text-centered">
      {{ cartTotal }}
    </h1>
    <router-link to="/checkout" class="button is-primary">
      Checkout
    </router-link>
  </div>
</template>

<script>
export default {
  name: "Totals",
  computed: {
    cartTotal() {
      return this.$store.getters.cartTotal;
    }
  },
  methods: {}
};
</script>