Add announcement display with placeholder messages
This commit is contained in:
parent
2e3d4d7728
commit
e067783a30
8 changed files with 119 additions and 2 deletions
13
src/components/announcement/announcement.js
Normal file
13
src/components/announcement/announcement.js
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
|
||||
const Announcement = {
|
||||
props: {
|
||||
announcement: Object
|
||||
},
|
||||
computed: {
|
||||
content () {
|
||||
return this.announcement.content
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export default Announcement
|
||||
Loading…
Add table
Add a link
Reference in a new issue