keanu-weblite/src/components/roomInfoMixin.js
2021-03-11 13:55:10 +01:00

28 lines
No EOL
414 B
JavaScript

export default {
computed: {
room() {
return this.$matrix.currentRoom;
},
roomName() {
if (this.room) {
return this.room.name;
}
return "";
},
roomTopic() {
if (this.room) {
return this.room.topic;
}
return "";
},
roomAvatar() {
if (this.room) {
return this.room.avatar;
}
return "";
},
},
}