Files
better-mreso/app/components/sidebar/trip.vue
T
2026-07-12 22:18:17 +02:00

21 lines
444 B
Vue

<template>
<div id="tripSelector">
<input type="text" placeholder="from" value="SEM:GENBIBLIUNI" />
<input type="text" placeholder="to" value="SEM:GENPERE" />
<button @click="$emit('plan')">request</button>
</div>
</template>
<script setup lang="ts"></script>
<style scoped>
#tripSelector {
position: fixed;
left: 0;
top: 0;
height: 100vh;
overflow: auto;
background: white;
}
</style>