Fix: mylenie rozkładów jazdy dla AZ (ciąg dalszy)

This commit is contained in:
2022-01-26 21:02:17 +01:00
parent 4c1f892fc4
commit b805c988c9
4 changed files with 445 additions and 372 deletions
@@ -0,0 +1,32 @@
<template>
<div>
</div>
</template>
<script lang="ts">
import Train from '@/scripts/interfaces/Train';
import { defineComponent } from 'vue'
export default defineComponent({
props: {
train: {
type: Object as () => Train,
required: true
}
},
setup () {
return {}
},
mounted() {
console.log("test");
}
})
</script>
<style scoped>
</style>