Replace all remaining uses of driverViewMixin with <router-link>

This commit is contained in:
dominik-korsa
2024-08-21 13:49:31 +02:00
parent 9837ae97e1
commit 462dd7dd7a
5 changed files with 23 additions and 37 deletions
-14
View File
@@ -1,14 +0,0 @@
import { defineComponent } from 'vue';
export default defineComponent({
methods: {
driverMixin_showDriverView(id: string) {
this.$router.push({
name: 'DriverView',
query: {
trainId: id
}
});
}
}
});