summaryrefslogtreecommitdiff
path: root/iridescence/src/components/BusyBar.vue
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/components/BusyBar.vue
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/components/BusyBar.vue')
-rw-r--r--iridescence/src/components/BusyBar.vue20
1 files changed, 20 insertions, 0 deletions
diff --git a/iridescence/src/components/BusyBar.vue b/iridescence/src/components/BusyBar.vue
new file mode 100644
index 0000000..fff2c4c
--- /dev/null
+++ b/iridescence/src/components/BusyBar.vue
@@ -0,0 +1,20 @@
+<template>
+ <div id="busyBar">
+ <progress
+ class="progress is-small is-primary"
+ max="100"
+ v-if="isBusy"
+ ></progress>
+ </div>
+</template>
+
+<script>
+export default {
+ name: "BusyBar",
+ computed: {
+ isBusy() {
+ return this.$store.getters.busy;
+ }
+ }
+};
+</script>