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