mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 04:23:01 +00:00
24 lines
345 B
Vue
24 lines
345 B
Vue
<template>
|
|
<span class="see-all">
|
|
<RouterLink :to="route"> SEE ALL </RouterLink>
|
|
</span>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
defineProps<{
|
|
route: string;
|
|
}>();
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.see-all {
|
|
font-size: $medium;
|
|
opacity: 0.75;
|
|
|
|
a:hover {
|
|
cursor: pointer !important;
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
</style>
|