summaryrefslogtreecommitdiff
path: root/iridescence/src/views
diff options
context:
space:
mode:
authorAdam T. Carpenter <atc@53hor.net>2020-09-12 08:35:13 -0400
committerAdam T. Carpenter <atc@53hor.net>2020-09-12 08:35:13 -0400
commit92b5b5cc69fdd3dfe67ea07a0fcf26bdd3c930f8 (patch)
tree5a4998f7e75bd140319be6e5136d57ceb3990b7b /iridescence/src/views
parent07e2b64c03c2fb566f324310f89b88797881b039 (diff)
downloadtheglassyladies-92b5b5cc69fdd3dfe67ea07a0fcf26bdd3c930f8.tar.xz
theglassyladies-92b5b5cc69fdd3dfe67ea07a0fcf26bdd3c930f8.zip
Moved testing products into api/dichroism; renamed inventory to
products.
Diffstat (limited to 'iridescence/src/views')
-rw-r--r--iridescence/src/views/Home.vue18
1 files changed, 9 insertions, 9 deletions
diff --git a/iridescence/src/views/Home.vue b/iridescence/src/views/Home.vue
index b01b78d..1212d2c 100644
--- a/iridescence/src/views/Home.vue
+++ b/iridescence/src/views/Home.vue
@@ -8,7 +8,7 @@
<div class="column is-narrow">
<section class="section">
<div class="box">
- <InventoryFilter></InventoryFilter>
+ <ProductFilter></ProductFilter>
</div>
</section>
</div>
@@ -16,10 +16,10 @@
<div class="column">
<div class="container">
<section class="section">
- <InventorySearch></InventorySearch>
+ <ProductSearch></ProductSearch>
</section>
<section class="section">
- <InventoryList></InventoryList>
+ <ProductList></ProductList>
</section>
</div>
</div>
@@ -28,16 +28,16 @@
</template>
<script>
-import InventoryList from "@/components/InventoryList.vue";
-import InventoryFilter from "@/components/InventoryFilter.vue";
-import InventorySearch from "@/components/InventorySearch.vue";
+import ProductList from "@/components/ProductList.vue";
+import ProductFilter from "@/components/ProductFilter.vue";
+import ProductSearch from "@/components/ProductSearch.vue";
export default {
name: "Home",
components: {
- InventoryList,
- InventorySearch,
- InventoryFilter
+ ProductList,
+ ProductSearch,
+ ProductFilter
}
};
</script>