there are two routes
{
    name: "article",
    path: "/article/:id",
    component: null
},
{
    name: "new-article",
    path: "/article/edit",
    component: ArticleEdit
}, now I am coding to the  / article/edit  page, and then after F5 refreshes, I will route to the  / article/:id  page. What should I do with this problem? 
