🐛 (header) remove back button

This commit is contained in:
Julien Calixte
2019-12-28 15:22:27 +01:00
parent 203c88118b
commit b6deea2109

View File

@@ -11,17 +11,15 @@
<router-link class="navbar-item" to="/"> <router-link class="navbar-item" to="/">
<img src="./assets/vaquant-root-white.png" title="vaquant" /> <img src="./assets/vaquant-root-white.png" title="vaquant" />
</router-link> </router-link>
<app-installed class="navbar-item"> <online-view class="online-view">
<template v-slot:app-installed> <div slot="offline">
<a href="#" @click="back"> <img
<img class="icon"
class="back-icon" src="./assets/icons/baseline_cloud_off_white_48dp.png"
src="./assets/icons/baseline_arrow_back_white_48dp.png" alt="offline"
alt="back" />
/> </div>
</a> </online-view>
</template>
</app-installed>
<span class="vaquant-title" :class="{ visible: shadow }">{{ <span class="vaquant-title" :class="{ visible: shadow }">{{
title title
}}</span> }}</span>
@@ -74,14 +72,14 @@ import ClickOutside from 'vue-click-outside'
import { Action, Getter } from 'vuex-class' import { Action, Getter } from 'vuex-class'
import IUser from '@/models/IUser' import IUser from '@/models/IUser'
import { COFFEE_LINK } from '@/utils/constants' import { COFFEE_LINK } from '@/utils/constants'
import AppInstalled from '@/components/AppInstalled.vue' import OnlineView from '@/components/OnlineView.vue'
@Component({ @Component({
directives: { directives: {
ClickOutside ClickOutside
}, },
components: { components: {
'app-installed': AppInstalled 'online-view': OnlineView
} }
}) })
export default class App extends Vue { export default class App extends Vue {