feat: defer everything until the api config is loaded #926

Merged
konrad merged 27 commits from feature/ready-state into main 2021-11-13 19:49:03 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 0609b35c9b - Show all commits

View File

@ -1,7 +1,7 @@
<template>
<div class="no-auth-wrapper">
<div class="noauth-container">
<img alt="Vikunja" :src="logoUrl" width="400" height="117"/>
<Logo width="400" height="117" />
<div class="message is-info" v-if="motd !== ''">
<div class="message-header">
<p>{{ $t('misc.info') }}</p>
@ -16,7 +16,7 @@
</template>
<script setup>
konrad marked this conversation as resolved Outdated

Use script setup

Use script setup

Makes a lot of sense. Done!

Makes a lot of sense. Done!
import logoUrl from '@/assets/logo-full.svg'
import Logo from '@/components/home/Logo.vue'
import {useStore} from 'vuex'
import {computed} from 'vue'