audiobookshelf/client/components/widgets/AlreadyInLibraryIndicator.vue

20 lines
395 B
Vue
Raw Normal View History

<template>
<ui-tooltip v-if="alreadyInLibrary" :text="$strings.LabelAlreadyInYourLibrary" direction="top">
2023-02-27 19:22:17 +01:00
<span class="material-icons ml-1 text-success" style="font-size: 0.8rem">check_circle</span>
</ui-tooltip>
</template>
<script>
export default {
props: {
alreadyInLibrary: Boolean
},
data() {
return {}
},
computed: {},
methods: {},
mounted() {}
}
</script>