summaryrefslogtreecommitdiff
path: root/iridescence/src/components/CartCheckout.vue
blob: ec72acf78ec0bd3fc473259379e77c1e0e429959 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<template>
  <div class="buttons">
    <button class="button">
      Cart (5)
    </button>
    <button class="button is-info">
      Checkout
    </button>
  </div>
</template>
<script>
export default {
  name: "CartCheckout"
};
</script>