🐛 (header) remove back button
This commit is contained in:
24
src/App.vue
24
src/App.vue
@@ -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 {
|
||||||
|
|||||||
Reference in New Issue
Block a user