mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-10-04 11:19:29 +02:00
18 lines
300 B
Vue
18 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>
|