wyświetlanie RJ dla scenerii offline

This commit is contained in:
2024-02-10 01:30:43 +01:00
parent eaefe955a7
commit 41b335555a
21 changed files with 161 additions and 101 deletions
+2 -2
View File
@@ -15,7 +15,7 @@
<script lang="ts">
import { PropType, defineComponent } from 'vue';
import Station from '../../scripts/interfaces/Station';
import { OnlineScenery } from '../../store/typings';
import { ActiveScenery } from '../../store/typings';
export default defineComponent({
props: {
@@ -29,7 +29,7 @@ export default defineComponent({
},
onlineScenery: {
type: Object as PropType<OnlineScenery>
type: Object as PropType<ActiveScenery>
}
}
});