mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-08-21 10:08:39 +02:00
17 lines
300 B
Vue
17 lines
300 B
Vue
<template>
|
|
<ui-tooltip :text="$strings.LabelExplicit" direction="top">
|
|
<span class="material-symbols text-sm ml-1 !block">explicit</span>
|
|
</ui-tooltip>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {},
|
|
data() {
|
|
return {}
|
|
},
|
|
computed: {},
|
|
methods: {},
|
|
mounted() {}
|
|
}
|
|
</script>
|