New gyoza, with new backend and up to date frontend
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

27 lines
457 B

<template>
<q-layout> <!-- Be sure to play with the Layout demo on docs -->
<q-page-container>
<router-view />
</q-page-container>
</q-layout>
</template>
<script>
export default {
// name: 'LayoutName',
data () {
return {
leftDrawer: true
}
},
created () {
let username = this.$q.localStorage.getItem('username')
if (username) {
this.$router.push('/dashboard')
}
}
}
</script>
<style>
</style>