2017-05-21 03:21:16 +00:00
|
|
|
<template lang="pug">
|
|
|
|
i.nav-item#notifload(v-bind:class='{ "is-active": loading }')
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2017-10-30 01:36:05 +00:00
|
|
|
import { mapState } from 'vuex'
|
2017-05-21 03:21:16 +00:00
|
|
|
|
2017-10-30 01:36:05 +00:00
|
|
|
export default {
|
|
|
|
name: 'loading-spinner',
|
|
|
|
computed: mapState(['loading'])
|
|
|
|
}
|
2017-05-21 03:21:16 +00:00
|
|
|
</script>
|