OK, let's see the details:
- The url is like this:
http://domain.com/index.html?foo=bar#!/home?name=abc
- It's special because it contains
?foo=bar
before the #
symbol
- When I print the
this.$route.query
, I got the { name: "abc?foo" }
instead of { name: "abc" }
Live Demo