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