This commit is contained in:
2024-03-05 15:27:42 +01:00
parent 17ebdace82
commit 436e3e63f9
4 changed files with 25 additions and 16 deletions
-14
View File
@@ -1,14 +0,0 @@
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
}
}
});