mirror of
https://github.com/audiobookshelf/audiobookshelf-web.git
synced 2025-08-28 13:48:10 +02:00
19 lines
445 B
Vue
19 lines
445 B
Vue
|
<template>
|
||
|
<nuxt-link :to="`/docs${hash}`" class="px-4 py-1.5 text-sm font-semibold block mr-6" :class="{ 'bg-white bg-opacity-10 rounded-r-full text-yellow-400': selected, 'text-gray-300 hover:text-white': !selected }">{{ text }}</nuxt-link>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
props: {
|
||
|
hash: String,
|
||
|
text: String,
|
||
|
selected: Boolean
|
||
|
},
|
||
|
data() {
|
||
|
return {}
|
||
|
},
|
||
|
computed: {},
|
||
|
methods: {},
|
||
|
mounted() {}
|
||
|
}
|
||
|
</script>
|