21 lines
444 B
Vue
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>
|