Allow logo and accentColor to be set in config/runtimeConfig

This commit is contained in:
N-Pex 2023-04-26 11:39:32 +02:00
parent 6cd47a88c0
commit 61720b8440
9 changed files with 71 additions and 27 deletions

View file

@ -4,7 +4,7 @@
<v-container fluid class="text-center mt-8">
<v-row align="center" justify="center">
<v-col class="text-center" cols="auto">
<v-img contain src="@/assets/logo.svg" width="64" height="64" />
<v-img contain :src="logotype" width="64" height="64" />
</v-col>
</v-row>
</v-container>
@ -42,12 +42,13 @@
<script>
import RoomList from "../components/RoomList";
import YouAre from "../components/YouAre.vue";
import logoMixin from "../components/logoMixin";
export default {
components: {
RoomList,
YouAre,
},
mixins: [logoMixin],
computed: {
loading() {
return !this.$matrix.ready;