gancio-upstream/components/Announcement.vue

13 lines
345 B
Vue
Raw Normal View History

2022-04-26 22:01:56 +02:00
<template>
<nuxt-link :to='`/announcement/${announcement.id}`'>
2024-01-19 00:46:04 +01:00
<v-alert class='mb-1 text-h5 font-weight-bold' rounded="0" type='info' color="primary" flat border="left">{{announcement.title}}</v-alert>
2022-04-26 22:01:56 +02:00
</nuxt-link>
</template>
<script>
export default {
props: {
announcement: { type: Object, default: () => ({}) }
}
}
</script>