mirror of
https://framagit.org/les/gancio.git
synced 2025-01-31 16:42:22 +01:00
17 lines
427 B
Vue
17 lines
427 B
Vue
<template>
|
|
<nuxt-link :to='`/announcement/${announcement.id}`'>
|
|
<v-alert rounded="0" flat color="primary" border="left" show-icon :icon='mdiInformation'><h3>{{announcement.title}}</h3></v-alert>
|
|
</nuxt-link>
|
|
</template>
|
|
<script>
|
|
import { mdiInformation } from '@mdi/js'
|
|
|
|
export default {
|
|
data () {
|
|
return { mdiInformation }
|
|
},
|
|
props: {
|
|
announcement: { type: Object, default: () => ({}) }
|
|
}
|
|
}
|
|
</script>
|