this is a dirty sync commit
This commit is contained in:
parent
3cf5b26f26
commit
bb22d1a728
5 changed files with 63 additions and 15 deletions
14
src/App.vue
14
src/App.vue
|
@ -1,22 +1,30 @@
|
|||
<script lang="ts">
|
||||
import MainMenu from './components/MainMenu.vue'
|
||||
import Search from './components/Search.vue'
|
||||
import Data from './components/Data.vue'
|
||||
|
||||
export default {
|
||||
components: {
|
||||
MainMenu,
|
||||
Search
|
||||
Search,
|
||||
Data,
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
applicationName: this.applicationName,
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<header class="w-screen">
|
||||
<h1 class="">{{ this.applicationName }}</h1>
|
||||
<header class="w-screen flex flex-row">
|
||||
<h1 class="">{{ applicationName }}</h1>
|
||||
<MainMenu />
|
||||
<Search />
|
||||
</header>
|
||||
|
||||
<main>
|
||||
<Data />
|
||||
</main>
|
||||
</template>
|
18
src/components/Data.vue
Normal file
18
src/components/Data.vue
Normal file
|
@ -0,0 +1,18 @@
|
|||
<script lang="ts">
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
apiUri: this.appUri,
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
async fetchData() {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
||||
</template>
|
|
@ -1,16 +1,17 @@
|
|||
<script lang="ts">
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
menuEntries: this.menuEntries,
|
||||
}
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<ul>
|
||||
<li>
|
||||
Startseite
|
||||
</li>
|
||||
<li>
|
||||
Karte
|
||||
</li>
|
||||
<li>
|
||||
Glossar
|
||||
<ul class="flex flex-row">
|
||||
<li class="p-2" v-for="entry of menuEntries">
|
||||
<a :href="entry.uri">{{ entry.name }}</a>
|
||||
</li>
|
||||
</ul>
|
||||
</template>
|
|
@ -1,5 +1,11 @@
|
|||
<script lang="ts">
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
searchTerm: '',
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
|
15
src/main.ts
15
src/main.ts
|
@ -7,7 +7,22 @@ const app = createApp(App)
|
|||
|
||||
app.config.globalProperties = {
|
||||
...app.config.globalProperties,
|
||||
apiUri: 'https://jsonplaceholder.typicode.com/posts/',
|
||||
applicationName: 'Stadtratmonitor',
|
||||
menuEntries: {
|
||||
0: {
|
||||
name: 'Startseite',
|
||||
uri: '/',
|
||||
},
|
||||
1: {
|
||||
name: 'Karte',
|
||||
uri: '/karte'
|
||||
},
|
||||
2: {
|
||||
name: 'Glossar',
|
||||
uri: '/glossar'
|
||||
}
|
||||
},
|
||||
}
|
||||
|
||||
app.mount('#app')
|
||||
|
|
Loading…
Reference in a new issue