1
0
mirror of https://github.com/advplyr/audiobookshelf.git synced 2025-07-23 16:58:13 +02:00
Files
.devcontainer
.github
.vscode
build
client
assets
components
app
cards
content
controls
covers
modals
player
prompt
readers
stats
tables
ui
widgets
AbridgedIndicator.vue
Alert.vue
AlreadyInLibraryIndicator.vue
AudiobookData.vue
AuthorsSlider.vue
BookDetailsEdit.vue
CoverSizeWidget.vue
CronExpressionBuilder.vue
EpisodeSlider.vue
ExplicitIndicator.vue
ItemSlider.vue
LoadingSpinner.vue
MoreMenu.vue
NarratorsSlider.vue
NotificationWidget.vue
OnlineIndicator.vue
PodcastDetailsEdit.vue
PodcastTypeIndicator.vue
RssFeedMetadataBuilder.vue
SeriesInputWidget.vue
SeriesSlider.vue
layouts
middleware
mixins
pages
players
plugins
static
store
strings
nuxt.config.js
package-lock.json
package.json
tailwind.config.js
images
server
test
.dockerignore
.gitattributes
.gitignore
Dockerfile
LICENSE
docker-compose.yml
docker-template.xml
index.js
package-lock.json
package.json
prod.js
readme.md
audiobookshelf/client/components/widgets/AlreadyInLibraryIndicator.vue
2023-02-27 18:22:17 +00:00

20 lines
395 B
Vue

<template>
<ui-tooltip v-if="alreadyInLibrary" :text="$strings.LabelAlreadyInYourLibrary" direction="top">
<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>