📌  相关文章
📜  找不到vue路由器刷新页面-任何代码示例

📅  最后修改于: 2022-03-11 14:59:53.010000             🧑  作者: Mango

代码示例1
const ROUTER_INSTANCE = new VueRouter({
    mode: "history",
    routes: [
        { path: "/", component: HomeComponent },
        // ... other routes ...
        // and finally the default route, when none of the above matches:
        { path: "*", component: PageNotFound }
    ]
})