DigitalConsumer.FixMyGlass/src/router/methods/route-logic/payment-method.js
2025-05-28 16:50:34 -04:00

9 lines
302 B
JavaScript

import { routeData } from "@/router/constants/routes";
import router from "@/router";
export async function paymentMethodBeforeEnter(to, from) {
// Refresh page when navigating back from payment to avoid iframe issues.
if (from.name === routeData.PAYMENT.name) {
router.go(0);
}
}