13 lines
241 B
Vue
13 lines
241 B
Vue
<template lang="pug">
|
|
i.nav-item#notifload(v-bind:class='{ "is-active": loading }')
|
|
</template>
|
|
|
|
<script>
|
|
import { mapState } from 'vuex'
|
|
|
|
export default {
|
|
name: 'loading-spinner',
|
|
computed: mapState(['loading'])
|
|
}
|
|
</script>
|