blob: c4a218449ee7dc082c2e6febb5b6e1abbda6209c (
plain) (
tree)
|
|
<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>
|