summaryrefslogtreecommitdiff
path: root/iridescence/src/components/cart/Totals.vue
blob: b679207aa2cb02993f6d4c882c0676fa5dfdad9b (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>
    <hr />

    <h1 class="title has-text-centered">Total: {{ cartTotal }}</h1>
    <router-link to="/checkout" class="button is-primary is-fullwidth">
      Checkout
    </router-link>
  </div>
</template>

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