0👍
✅
If your vue-router is set up correctly I believe your code should work. If operations
is a route param, make sure it’s defined in the route config
{
name: "mfconfig",
path: "/mfconfig/:operation", // defines route param "operation"
component: () => import("@/components/MFConfig.vue")
}
Source:stackexchange.com