(VueJS) vue-router match multiple paths
You can use an alias in the routes:
routes: [
{ path: '/foo', component: Foo, alias: '/bar'}
]
There are some nice examples here:
https://github.com/vuejs/vue-router/blob/dev/examples/route-alias/app.js
Best way to achive this is :
{
path: '/internalplatforms',
alias: ['/a_internalplatforms', '/b_internalplatforms'],
name: 'ImportantPlatform',
component: ImportantPlatform
}
By aliasing, you can call internalplatforms or a_internalplatforms or b_internalplatforms and it will show that same component.