mirror of
https://framagit.org/les/gancio.git
synced 2025-02-01 00:52:01 +01:00
32e48ed64d
@nuxt/vuetify etc...
16 lines
392 B
Vue
16 lines
392 B
Vue
<template lang="pug">
|
|
nuxt-link(:to='`/announcement/${announcement.id}`')
|
|
v-alert.mb-1(border='left' type='info' color="primary" :icon='mdiInformation') {{announcement.title}}
|
|
|
|
</template>
|
|
<script>
|
|
import { mdiInformation } from '@mdi/js'
|
|
export default {
|
|
data () {
|
|
return { mdiInformation }
|
|
},
|
|
props: {
|
|
announcement: { type: Object, default: () => ({}) }
|
|
}
|
|
}
|
|
</script>
|