frontend/components/Channel.vue
2025-04-30 07:40:51 +02:00

20 lines
No EOL
290 B
Vue

<template>
<div>
<a class="channel-list-link" :href="href">
{{ name }}
</a>
</div>
</template>
<script lang="ts" setup>
const props = defineProps<{ name: string, href: string }>();
</script>
<style scoped>
.channel-list-link {
text-decoration: none;
color: inherit;
}
</style>