mirror of
https://framagit.org/les/gancio.git
synced 2025-01-31 16:42:22 +01:00
8 lines
275 B
Vue
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>
|