mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 13:28:11 +00:00
15 lines
321 B
TypeScript
15 lines
321 B
TypeScript
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
|
|
}
|
|
}
|
|
});
|