summaryrefslogtreecommitdiff
path: root/iridescence/src/store
diff options
context:
space:
mode:
authorAdam T. Carpenter <atc@53hor.net>2020-09-25 18:51:24 -0400
committerAdam T. Carpenter <atc@53hor.net>2020-09-25 18:51:24 -0400
commit97af17e716c06d8c81f4e380c5a467c5d14daac9 (patch)
treea645d3c441e92bb14342826f7f0eccecc059f13f /iridescence/src/store
parent74c5bb3fa6fd725685ad549c972ec0dee58f1b6b (diff)
downloadtheglassyladies-97af17e716c06d8c81f4e380c5a467c5d14daac9.tar.xz
theglassyladies-97af17e716c06d8c81f4e380c5a467c5d14daac9.zip
browser image parsing to base64/dataURL complete; further work on new product, added animate.css just for testing
Diffstat (limited to 'iridescence/src/store')
-rw-r--r--iridescence/src/store/index.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/iridescence/src/store/index.js b/iridescence/src/store/index.js
index 0e5d3be..1a83c01 100644
--- a/iridescence/src/store/index.js
+++ b/iridescence/src/store/index.js
@@ -9,9 +9,13 @@ let dichroismApi = new Dichroism();
export default new Vuex.Store({
state: {
searchTerm: "",
- products: []
+ products: [],
+ busy: false
},
getters: {
+ busy(state) {
+ return state.busy;
+ },
products(state) {
return state.products.filter(item => {
return JSON.stringify(item)