blob: c4a218449ee7dc082c2e6febb5b6e1abbda6209c (
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">
<InventoryFilter></InventoryFilter>
<InventoryList></InventoryList>
</div>
</template>
<script>
import InventoryList from "@/components/InventoryList.vue";
import InventoryFilter from "@/components/InventoryFilter.vue";
export default {
name: "Home",
components: {
InventoryList,
InventoryFilter
}
};
</script>
|