17 lines
295 B
Vue
17 lines
295 B
Vue
<script setup>
|
|
import DayCarousel from "../components/day-carousel.vue";
|
|
import HistoryList from "../components/history-list.vue";
|
|
</script>
|
|
|
|
<template>
|
|
<div class="history">
|
|
<DayCarousel :element="HistoryList" />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.history {
|
|
height: 100%;
|
|
}
|
|
</style>
|