keanu-weblite/src/components/roomInfoMixin.js

28 lines
414 B
JavaScript
Raw Normal View History

2021-03-11 13:55:10 +01:00
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 "";
},
},
}