audiobookshelf.audiobookshe.../components/sidebar/NavItem.vue
2022-05-05 18:13:06 -05:00

19 lines
No EOL
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>