back to search, remove services

This commit is contained in:
sperwing 2024-12-01 01:19:51 +01:00
parent df2e604e49
commit 045a169e85
2 changed files with 4 additions and 9 deletions

View File

@ -1,15 +1,15 @@
<template> <template>
<routing/> <search/>
</template> </template>
<script> <script>
import routing from './components/routing.vue' import search from './components/search.vue'
export default { export default {
name: 'App', name: 'App',
components: { components: {
routing search
} }
} }
</script> </script>

View File

@ -9,12 +9,7 @@
baseURL: process.env.VUE_APP_BASE_URL baseURL: process.env.VUE_APP_BASE_URL
}); });
const services = [ const services = [
{id:"db", name:"Deutsche Bahn"},
{id:"vbb", name:"Verkehrsverbund Berlin-Brandenburg"},
{id:"pkp", name:"Polskie Koleje Państwowe"},
{id:"irish", name:"Iarnród Éireann"},
{id:"oebb", name:"Österreichische Bundesbahnen"},
{id:"lu", name:"Mobilitéitszentral (Luxembourg)"}
] ]
export default { export default {
name: 'SearchBahn', name: 'SearchBahn',