mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2024-11-08 09:04:43 +01:00
20 lines
350 B
Vue
20 lines
350 B
Vue
<template>
|
|
<ui-tooltip v-if="explicit" :text="$strings.LabelExplicit" direction="top">
|
|
<span class="material-icons ml-1" style="font-size: 0.8rem">explicit</span>
|
|
</ui-tooltip>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
explicit: Boolean
|
|
},
|
|
data() {
|
|
return {}
|
|
},
|
|
computed: {},
|
|
methods: {},
|
|
mounted() {}
|
|
}
|
|
</script>
|