stadtratmonitor-vue/src/App.vue

30 lines
538 B
Vue
Raw Normal View History

2023-06-07 17:31:37 +02:00
<script lang="ts">
import MainMenu from './components/MainMenu.vue'
import Search from './components/Search.vue'
2023-06-07 22:12:45 +02:00
import Data from './components/Data.vue'
2023-06-07 17:31:37 +02:00
export default {
components: {
MainMenu,
2023-06-07 22:12:45 +02:00
Search,
Data,
},
data() {
return {
applicationName: this.applicationName,
}
2023-06-07 17:31:37 +02:00
}
}
</script>
<template>
2023-06-11 16:50:44 +02:00
<header class="w-screen flex flex-row place-content-center">
<h1 class="p-2 text-xl">{{ applicationName }}</h1>
2023-06-07 17:31:37 +02:00
<MainMenu />
<Search />
</header>
<main>
2023-06-07 22:12:45 +02:00
<Data />
2023-06-07 17:31:37 +02:00
</main>
</template>