diff options
author | Adam Carpenter <atc@53hor.net> | 2020-04-30 21:31:30 -0400 |
---|---|---|
committer | Adam Carpenter <atc@53hor.net> | 2020-04-30 21:31:30 -0400 |
commit | c499946400c775f311d52236d9d1fef3f19a68ff (patch) | |
tree | ccff75f9679f3c23e4e9c7c3c04855e6be846adf /iridescence/src/store | |
parent | 9119c86ff94fd29086dfd342a616993f20fc5c75 (diff) | |
download | theglassyladies-c499946400c775f311d52236d9d1fef3f19a68ff.tar.xz theglassyladies-c499946400c775f311d52236d9d1fef3f19a68ff.zip |
moved search into InventorySearch and started work on filters; updated quantity display
Diffstat (limited to 'iridescence/src/store')
-rw-r--r-- | iridescence/src/store/index.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/iridescence/src/store/index.js b/iridescence/src/store/index.js index eaf9a9f..2d88e02 100644 --- a/iridescence/src/store/index.js +++ b/iridescence/src/store/index.js @@ -9,7 +9,7 @@ export default new Vuex.Store({ { id: 1, name: "Beach Box", - quantity: 5, + quantity: -1, // quantity of -1 could mean made on demand cents: 1100, imgPath: "/beach_box.jpg", description: "This is a beach box." @@ -17,7 +17,7 @@ export default new Vuex.Store({ { id: 2, name: "Wind Chime", - quantity: 2, + quantity: 0, cents: 4500, imgPath: "/wind-chime.jpg", description: "Makes noise when the wind blows." |