Is there a method to refresh the page component when two pages utilize the same Component? I have encountered an issue where the router does not reload and the previous edit values persist.
{
path: "/products/new",
component: ProductPage,
meta: {
breadcrumb: [
{ name: "Home", link: "/home" },
{ name: "Products", link: "/products" },
{ name: "New Product" }
]
}
},
{
path: "/products/:id",
component: ProductPage,
meta: {
breadcrumb: [
{ name: "Home", link: "/home" },
{ name: "Products", link: "/products" },
{ name: "Edit Product" }
]
}
}