You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
241 B

  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>