summaryrefslogtreecommitdiff
path: root/iridescence/src/views/Cart.vue
blob: 7060b60fa98dd8051684bda13ee3a88b56171a4c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<template>
  <div id="cart">
    <div class="container">
      <section class="section">
        <CartItem></CartItem>
      </section>
    </div>
  </div>
</template>

<script>
import CartItem from "@/components/cart/CartItem.vue";

export default {
  name: "Cart",
  components: {
    CartItem
  }
};
</script>