gancio-upstream/components/Announcement.vue
2024-08-25 22:08:35 +02:00

8 lines
275 B
Vue

<script setup>
defineProps({ announcement: { type: Object, default: () => ({}) } })
</script>
<template>
<nuxt-link class="text-decoration-none" :to='`/announcement/${announcement?.id}`'>
<v-alert type="info" :title='announcement.title' />
</nuxt-link>
</template>