mirror of https://github.com/Requarks/wiki.git
12 lines
231 B
12 lines
231 B
<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>
|