ki-frontend/src/App.vue

26 lines
454 B
Vue
Raw Normal View History

2021-09-19 12:55:33 +02:00
<!--
SPDX-FileCopyrightText: WTF Kooperative eG <https://wtf-eg.de/>
SPDX-License-Identifier: AGPL-3.0-or-later
-->
2021-05-31 16:14:28 +02:00
<template>
<header v-if="this.$route.path.includes('/s/')">
2021-09-19 15:56:48 +02:00
<Navbar />
</header>
2021-09-19 17:30:37 +02:00
<router-view :key="$route.fullPath" />
2021-09-19 11:21:23 +02:00
<Footer />
</template>
<script>
2021-09-21 23:56:17 +02:00
import Footer from '@/components/Footer'
import Navbar from '@/components/Navbar'
2021-09-19 11:21:23 +02:00
export default {
2021-09-19 17:30:37 +02:00
name: 'App',
2021-09-19 11:21:23 +02:00
components: {
2021-09-19 15:56:48 +02:00
Footer,
Navbar,
2021-09-19 17:30:37 +02:00
}
};
2021-07-28 21:52:12 +02:00
</script>