This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<v-app>
|
<v-app>
|
||||||
<v-navigation-drawer v-if="isAuthenticated" fixed v-model="drawer" app>
|
<v-navigation-drawer v-if="isAuthenticated" v-model="drawer" app>
|
||||||
<v-list dense>
|
<v-list dense>
|
||||||
<v-list-item
|
<v-list-item
|
||||||
v-for="item in navItems"
|
v-for="item in navItems"
|
||||||
@@ -21,6 +21,7 @@
|
|||||||
:color="appBar.isMain ? 'primary' : 'secondary'"
|
:color="appBar.isMain ? 'primary' : 'secondary'"
|
||||||
dark
|
dark
|
||||||
fixed
|
fixed
|
||||||
|
app
|
||||||
>
|
>
|
||||||
<v-app-bar-nav-icon @click.stop="drawer = !drawer"></v-app-bar-nav-icon>
|
<v-app-bar-nav-icon @click.stop="drawer = !drawer"></v-app-bar-nav-icon>
|
||||||
<v-toolbar-title style="width: 300px" class="ml-0 pl-4">
|
<v-toolbar-title style="width: 300px" class="ml-0 pl-4">
|
||||||
@@ -87,7 +88,7 @@
|
|||||||
</v-toolbar-items>
|
</v-toolbar-items>
|
||||||
</v-app-bar>
|
</v-app-bar>
|
||||||
<v-content>
|
<v-content>
|
||||||
<v-container container--fluid fill-height>
|
<v-container fluid fill-height>
|
||||||
<v-row justify-center>
|
<v-row justify-center>
|
||||||
<transition name="fade" mode="out-in" @after-leave="afterLeave">
|
<transition name="fade" mode="out-in" @after-leave="afterLeave">
|
||||||
<router-view class="view"></router-view>
|
<router-view class="view"></router-view>
|
||||||
@@ -97,7 +98,12 @@
|
|||||||
</v-content>
|
</v-content>
|
||||||
<v-footer color="primary" padless v-if="!isAuthenticated">
|
<v-footer color="primary" padless v-if="!isAuthenticated">
|
||||||
<div>
|
<div>
|
||||||
<a href="https://ayanova.com" target="_blank" class="white--text">
|
<a
|
||||||
|
href="https://ayanova.com"
|
||||||
|
target="_blank"
|
||||||
|
style="text-decoration:none"
|
||||||
|
class="white--text caption"
|
||||||
|
>
|
||||||
<span>AyaNova ({{ version }}) {{ copyright }}</span>
|
<span>AyaNova ({{ version }}) {{ copyright }}</span>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user