mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 05:18:11 +00:00
hotifx toString
This commit is contained in:
@@ -1,6 +1,16 @@
|
||||
<template>
|
||||
<!-- WIP -->
|
||||
<!-- <div class="top-filters">
|
||||
<button class="btn btn--option">ROZPOCZYNA BIEG</button>
|
||||
|
||||
<button class="btn btn--option">PRZEZ</button>
|
||||
|
||||
<button class="btn btn--option">KOŃCZY BIEG</button>
|
||||
</div> -->
|
||||
|
||||
<section class="scenery-table-section">
|
||||
<Loading v-if="dataStatus != DataStatus.Loaded" />
|
||||
|
||||
<div class="no-history" v-else-if="historyList.length == 0">
|
||||
{{ $t('scenery.history-list-empty') }}
|
||||
</div>
|
||||
@@ -117,5 +127,14 @@ export default defineComponent({
|
||||
<style lang="scss" scoped>
|
||||
@import '../../styles/responsive.scss';
|
||||
@import '../../styles/sceneryViewTables.scss';
|
||||
|
||||
.top-filters {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 0.5em;
|
||||
|
||||
button {
|
||||
padding: 0.5em;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
../../store/storeTypes
|
||||
|
||||
@@ -129,7 +129,7 @@ export default defineComponent({
|
||||
|
||||
computed: {
|
||||
currentMode() {
|
||||
return this.$route.query.view ?? 'SceneryTimetable';
|
||||
return this.$route.query.view?.toString() ?? 'SceneryTimetable';
|
||||
},
|
||||
|
||||
stationInfo() {
|
||||
|
||||
Reference in New Issue
Block a user