blob: 1b071a3bf4e8f31273c6cda3c27a582bf7d35f37 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<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">
<InventoryList></InventoryList>
</div>
</template>
<script>
import InventoryList from "@/components/InventoryList.vue";
export default {
name: "Home",
components: {
InventoryList
}
};
</script>
|