mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 05:18:11 +00:00
14 lines
211 B
TypeScript
14 lines
211 B
TypeScript
import { defineComponent } from 'vue';
|
|
|
|
export default defineComponent({
|
|
methods: {
|
|
|
|
navigateTo(path: string, query?: {}) {
|
|
this.$router.push({
|
|
path,
|
|
query,
|
|
});
|
|
},
|
|
},
|
|
});
|