loading-spinner.vue 231 B

123456789101112
  1. <template lang="pug">
  2. i.nav-item#notifload(v-bind:class='{ "is-active": loading }')
  3. </template>
  4. <script>
  5. import { mapState } from 'vuex'
  6. export default {
  7. name: 'loading-spinner',
  8. computed: mapState(['loading'])
  9. }
  10. </script>