ki-frontend/src/App.vue
Michael Weimann 93cb302ca7
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing
implement search layout #32 #33 #35
2021-09-21 23:58:42 +02:00

26 lines
454 B
Vue

<!--
SPDX-FileCopyrightText: WTF Kooperative eG <https://wtf-eg.de/>
SPDX-License-Identifier: AGPL-3.0-or-later
-->
<template>
<header v-if="this.$route.path.includes('/s/')">
<Navbar />
</header>
<router-view :key="$route.fullPath" />
<Footer />
</template>
<script>
import Footer from '@/components/Footer'
import Navbar from '@/components/Navbar'
export default {
name: 'App',
components: {
Footer,
Navbar,
}
};
</script>