summaryrefslogtreecommitdiff
path: root/iridescence/src/views/Home.vue
blob: 5aef877f9b42204ef3f8b53ef95ff9830e7698cc (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
<template>
  <!-- Home is a view for browsing through the primary inventory. It should
	  allow users to sort, filter, and search for items and add them to their
	  cart. -->

  <div id="home">
    <figure class="image is-128x128">
      <img alt="The Glassy Ladies" src="../assets/logo.png" />
    </figure>
    <InventoryList></InventoryList>
  </div>
</template>

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

export default {
  name: "Home",
  components: {
    InventoryList
  }
};
</script>