[Vuejs]-I need assistance in determining why a data property won't navigate with a router.push

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")
}

working sandbox example

Leave a comment