Home now shows something meaningful

This commit is contained in:
konrad 2018-09-09 16:22:02 +02:00
parent cc2da96829
commit 5f80cef54f
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 7 additions and 9 deletions

View File

@ -1,9 +1,7 @@
<template>
<div>
<h3>Hiiiii</h3>
<span v-if="authenticated">Logged in
<button v-on:click="logout()" class="button">Logout</button>
</span>
<div class="content has-text-centered">
<h2>Hi {{user.infos.username}}!</h2>
<p>Click on a list or namespace on the left to get started.</p>
</div>
</template>
@ -13,11 +11,11 @@
export default {
name: "Home",
data() {
data() {
return {
authenticated: auth.user.authenticated
user: auth.user
}
},
},
beforeMount() {
// Check if the user is already logged in, if so, redirect him to the homepage
if (!auth.user.authenticated) {
@ -25,7 +23,7 @@
}
},
methods: {
logout () {
logout() {
auth.logout()
}
},