Closed robfordww closed 3 years ago
Are you still having the issue? Here's my setup...
nuxt.config.ts
loading: '@/components/Loading.vue'
Loading.vue
<template>
<b-loading is-full-page :active="isLoading" />
</template>
<script lang="ts">
import Vue from 'vue'
import { mapGetters } from 'vuex'
export default Vue.extend({
computed: {
...mapGetters({
isLoading: 'loadingStatus',
}),
},
})
</script>
Versions
Nuxt.js @ v2.14.5 Node: v12.18.4
Reproduction
Buefy "loader" is not showing.
When I create a brand new project like this: yarn create nuxt-app testapp I choose "Buefy", "Typescript", "Static site"
Then I try to use the Buefy example code for "loader": https://buefy.org/documentation/loading
... and it does not work. No error messages or warnings. The "loader" animation is just not showing when I click the button. I have tried a lot of fiddling with the parameters, yet I cant get the loader-animation to show. Otherwise, Buefy seems to be working. So what is happening here? Is there some NuxtJS override that conflicts with this loader in some sense?