wip: more work

This commit is contained in:
SauceyRed 2025-04-30 07:40:51 +02:00
parent 91cfb701b6
commit d401464353
Signed by: sauceyred
GPG key ID: 4BEDD9C389F924D0
9 changed files with 596 additions and 134 deletions

20
components/Channel.vue Normal file
View file

@ -0,0 +1,20 @@
<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>