Add announcement display with placeholder messages

This commit is contained in:
Tusooa Zhu 2022-03-17 12:59:10 -04:00 committed by tusooa
commit e067783a30
No known key found for this signature in database
GPG key ID: 7B467EDE43A08224
8 changed files with 119 additions and 2 deletions

View file

@ -0,0 +1,13 @@
const Announcement = {
props: {
announcement: Object
},
computed: {
content () {
return this.announcement.content
}
}
}
export default Announcement