You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 11, 2018. It is now read-only.
Guys,
Can a route have multiple paths? For example, I want 'test/:id' and 'test/blahblah/:name/:id' to go to the same page and have the same code executed.
`
export default {
path: '/test/:id',
path: '/test/blahblah/:name/:id',
async action({ params }) {
return {
title: 'Test',
component: ,
};
},
};
`
The text was updated successfully, but these errors were encountered: