mirror of
https://github.com/web3privacy/explorer-app.git
synced 2024-10-15 16:46:26 +02:00
12 lines
358 B
Vue
12 lines
358 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>
|