Can vue-router implement pushstate mode for query to transfer parameters?

vue-router "s route patterns hash and history, have their own disadvantages.
but the route for history is http://a.com/c/d, , not http://a.com?c=d

.

how to do this or is there any plug-in that can do this?


functional programming can

// url a.com?c=123
router.push({ path: 'a.com', query: { c: '123' }})
Menu