How can I send queries to another page with Vue?

I tried on button click

f7.mainView.router.load({url: “/search”, query: {key: this.keyword_search}}) where keyword_search is the query I want to pass to /search . I can access keyword_search, i get its value with console.log so I’m pretty sure that works, however when I’m redirected to /search the query is empty.

Anyone know the proper way to do this? Thanks in advance!

Hi,
i tried it and i get the query params here:

I using f7+vue
this.$route.options.query

first i was looking at:
this.$route.query
but query was an empty object.