summaryrefslogtreecommitdiff
path: root/iridescence/src/components/BusyBar.vue
diff options
context:
space:
mode:
authorAdam T. Carpenter <atc@53hor.net>2020-11-23 17:29:58 -0500
committerAdam T. Carpenter <atc@53hor.net>2020-11-23 17:29:58 -0500
commit2e7da5ab02ffa8b07fede7f6cd7e5dbbd90fac5f (patch)
treef1d29c4e00174540821d3f8cd9e9b3d943f90f26 /iridescence/src/components/BusyBar.vue
parent58c7f82c2cbf2f2ff3f5c2dd559e570924a41a4a (diff)
downloadtheglassyladies-2e7da5ab02ffa8b07fede7f6cd7e5dbbd90fac5f.tar.xz
theglassyladies-2e7da5ab02ffa8b07fede7f6cd7e5dbbd90fac5f.zip
finished up product detail functionality, started checkout and cart
views
Diffstat (limited to 'iridescence/src/components/BusyBar.vue')
-rw-r--r--iridescence/src/components/BusyBar.vue12
1 files changed, 1 insertions, 11 deletions
diff --git a/iridescence/src/components/BusyBar.vue b/iridescence/src/components/BusyBar.vue
index 721a5fd..a38cefa 100644
--- a/iridescence/src/components/BusyBar.vue
+++ b/iridescence/src/components/BusyBar.vue
@@ -5,13 +5,6 @@
max="100"
v-if="isBusy"
></progress>
- <progress
- class="progress is-small is-primary"
- v-bind:value="progress"
- max="100"
- v-if="progress < 100"
- >{{ progress }}%</progress
- >
</div>
</template>
@@ -20,10 +13,7 @@ export default {
name: "BusyBar",
computed: {
isBusy() {
- return this.$store.getters.busy;
- },
- progress() {
- return this.$store.getters.progress;
+ return this.$store.state.busy;
}
}
};