1
0
mirror of https://github.com/advplyr/audiobookshelf.git synced 2025-02-17 18:51:19 +01:00
audiobookshelf/client/components/widgets/NotificationWidget.vue

25 lines
452 B
Vue
Raw Normal View History

<template>
<div v-if="tasksRunning" class="w-4 h-4 mx-3 relative">
<div class="flex h-full items-center justify-center">
<widgets-loading-spinner />
</div>
</div>
</template>
<script>
export default {
data() {
return {}
},
computed: {
tasks() {
return this.$store.state.tasks.tasks
},
tasksRunning() {
return this.tasks.some((t) => !t.isFinished)
}
},
methods: {},
mounted() {}
}
</script>