mirror of
https://github.com/requarks/wiki.git
synced 2025-02-25 18:55:30 -06:00
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>
|