mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 05:18:11 +00:00
15 lines
258 B
TypeScript
15 lines
258 B
TypeScript
import { defineComponent } from 'vue';
|
|
|
|
export default defineComponent({
|
|
methods: {
|
|
driverMixin_showDriverView(id: string) {
|
|
this.$router.push({
|
|
name: 'DriverView',
|
|
query: {
|
|
trainId: id
|
|
}
|
|
});
|
|
}
|
|
}
|
|
});
|