I have a question about vue-router. How could I accomplish a route / routes like this:
example.com/blog/category/value/tags/value/page/value
Category, tags and page should be optional.
So if I visit
example.com/blog/category/value/page/value
- it should load the same component.
I'm using vue 2.
Thanks!