this is a dirty sync commit
This commit is contained in:
parent
3cf5b26f26
commit
bb22d1a728
5 changed files with 63 additions and 15 deletions
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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue