mirror of
https://github.com/web3privacy/explorer-app.git
synced 2024-10-15 16:46:26 +02:00
3b553f551d
fix(lint): resolve lint errors
19 lines
385 B
Vue
19 lines
385 B
Vue
<script lang="ts" setup>
|
|
defineProps<{
|
|
title: string
|
|
selected?: boolean
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<NuxtLink
|
|
text-14px
|
|
hover:text-app-white
|
|
leading-32px
|
|
uppercase
|
|
cursor-pointer
|
|
:class="[selected ? 'text-app-white font-700 underline underline-offset-4px hover:no-underline' : 'text-app-text-grey font-500']"
|
|
>
|
|
{{ title }}
|
|
</NuxtLink>
|
|
</template>
|