mirror of
https://github.com/Spythere/genera-tor.git
synced 2026-05-03 05:28:13 +00:00
Train picker (wip)
This commit is contained in:
@@ -0,0 +1,30 @@
|
|||||||
|
<template>
|
||||||
|
<div class="order-train-picker"></div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts">
|
||||||
|
import { defineComponent } from 'vue';
|
||||||
|
|
||||||
|
export default defineComponent({
|
||||||
|
name: 'order-train-picker',
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
sceneriesOnline: []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
mounted() {
|
||||||
|
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
fetchSceneriesOnline() {
|
||||||
|
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped></style>
|
||||||
|
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
export interface IStationsOnlineAPI {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface IStationsOnlineAPIList {
|
||||||
|
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user