mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-16 05:26:31 +00:00
22414744b0
Co-authored-by: qwerty287 <qwerty287@posteo.de> Co-authored-by: qwerty287 <80460567+qwerty287@users.noreply.github.com> Co-authored-by: Anbraten <6918444+anbraten@users.noreply.github.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
9 lines
208 B
TypeScript
9 lines
208 B
TypeScript
import { useRouter, type RouteLocationRaw } from 'vue-router';
|
|
|
|
export function useRouteBack(to: RouteLocationRaw) {
|
|
const router = useRouter();
|
|
|
|
return async () => {
|
|
await router.replace(to);
|
|
};
|
|
}
|