summaryrefslogtreecommitdiff
path: root/src/components/HeaderBlue.vue
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2021-03-20 11:12:39 +0100
committerSanto Cariotti <santo@dcariotti.me>2021-03-20 11:12:39 +0100
commita9ece91610c7f33cbc6445b58cfd1a9b43a89a49 (patch)
tree85aa6c7c81573e23f52cb328039a14d902b0acb5 /src/components/HeaderBlue.vue
parent024560588a7afbfa1fa1dbaf0440beefb695108c (diff)
chore: isolated loadings
Diffstat (limited to 'src/components/HeaderBlue.vue')
-rw-r--r--src/components/HeaderBlue.vue9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/components/HeaderBlue.vue b/src/components/HeaderBlue.vue
index d4ffa9f..fd6d731 100644
--- a/src/components/HeaderBlue.vue
+++ b/src/components/HeaderBlue.vue
@@ -1,7 +1,5 @@
<template lang="pug">
- header(:class="{active: loading}")
- #big-loading(v-if="loading")
- b-overlay(:show="true" spinner-large)
+ header
b-container
h1
a(href="/" rel="home") Gico
@@ -10,10 +8,5 @@
<script>
export default {
name: "HeaderBlue",
- computed: {
- loading: function() {
- return this.$store.getters.loading;
- },
- }
}
</script>