18 lines
388 B
Vue
18 lines
388 B
Vue
<template>
|
|
<div id="sidebar">
|
|
<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>
|
|
#sidebar {
|
|
height: 100%;
|
|
overflow: auto;
|
|
grid-area: sidebar;
|
|
}
|
|
</style>
|