Implement auth & register

This commit is contained in:
2020-04-23 00:11:26 +02:00
parent 0096fb0a00
commit 2dc7985334
6 changed files with 36 additions and 57 deletions
+3
View File
@@ -44,6 +44,9 @@
export default {
name: "centered",
layout: "centered",
options: {
auth: 'guest',
},
data: () => ({
tab: 0,
tabs: ["Login", "Register"]
+4 -4
View File
@@ -6,10 +6,10 @@
export default {
title: 'Home',
layout: 'home',
data: () => ({
}),
options: {
auth: false
},
data: () => ({}),
head: () => ({
title: "Home"
})