Dodatkowy widok rozkładów jazdy na stacji

This commit is contained in:
2020-11-11 22:56:32 +01:00
parent 63ba1ec5f3
commit e00c58f509
11 changed files with 630 additions and 12 deletions
+16
View File
@@ -65,6 +65,9 @@ import { mapGetters, mapActions } from "vuex";
import Clock from "@/components/App/Clock.vue";
// import stationData from "@/data/stations.json";
@Component({
components: { Clock },
})
@@ -76,6 +79,19 @@ export default class App extends Vue {
mounted() {
this.synchronizeData();
// stationData
// .filter(data => data.stationName.length > 12 || (data.stops && data.stops.some(stop => stop.length > 12)))
// .forEach(data => {
// console.log(data.stationName, data.stationName.length);
// data.stops?.forEach(stop => {
// console.log(stop, stop.length);
// })
// console.log("-----");
// });
}
}
</script>