I am using vue-router and I want to combine two very different paths. Is there some kind of array notation I can use?
You can use an alias in routes:
routes: [ { path: '/foo', component: Foo, alias: '/bar'} ]
There are some good examples here:
https://github.com/vuejs/vue-router/blob/dev/examples/route-alias/app.js
Source: https://habr.com/ru/post/1269496/More articles:Saving localStorage for WebView on macOS 10.11+ - local-storageHandle breadcrumbs in mvc dotnetcore - asp.net-mvcHow to add a web API controller to an existing ASP.NET Core MVC? - c #Why is a class constraint not found for a generic class using an inherited type? - genericsIOException when using .NET Core File Upload (Streaming) - asp.net-coreNashorn: evaluating JavaScript expression throws cast class exception for function open using lambda - javaJava 8 / Javascript (Nashorn) long interoperable - javaHow to remove only unique options in the selection selection? - jqueryobject type when implementing the interface - javaAngularJS checkbox does not take into account when unchecking checkBox - angularjsAll Articles