feat: driver train view

This commit is contained in:
2024-08-21 02:02:35 +02:00
parent 481d43b6d8
commit 24c9b62162
12 changed files with 102 additions and 53 deletions
+14
View File
@@ -0,0 +1,14 @@
import { defineComponent } from 'vue';
export default defineComponent({
methods: {
driverMixin_showDriverView(id: string) {
this.$router.push({
name: 'DriverView',
query: {
trainId: id
}
});
}
}
});