2023-11-20 21:30:48 +01:00

20 lines
324 B
Vue

<template>
<a :class="{ active: pageContext.urlPathname === $attrs.href }">
<slot />
</a>
</template>
<script lang="ts" setup>
import { usePageContext } from './usePageContext'
const pageContext = usePageContext()
</script>
<style scoped>
a {
padding: 3px 10px;
}
a.active {
background-color: #eee;
}
</style>