rozbudowany szczegółówy RJ pociągu

This commit is contained in:
2024-01-01 22:49:19 +01:00
parent 86bb9fcc2e
commit 4862328090
8 changed files with 555 additions and 410 deletions
+14
View File
@@ -0,0 +1,14 @@
import { PropType, defineComponent } from 'vue';
import dateMixin from '../../mixins/dateMixin';
import { TrainScheduleStop } from './TrainSchedule.vue';
export default defineComponent({
mixins: [dateMixin],
props: {
stop: {
type: Object as PropType<TrainScheduleStop>,
required: true
}
}
});