wip: more work
This commit is contained in:
parent
91cfb701b6
commit
d401464353
9 changed files with 596 additions and 134 deletions
20
components/Channel.vue
Normal file
20
components/Channel.vue
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue