this.$router.push({
path: '/home',
query: {
id: 1
}
});
我是使用方法三
https://segmentfault.com/a/1190000012393587
導轉後確實會有 ?id=1
但我發現我 reload 就會消失?
還是我的方式不對?⋯⋯
貼你的 code
因為我沒遇到這問題
code
<template>
<div id="app">
<div id="nav">
<router-link to="/">Home</router-link> |
<button @click = "demo">Click</button>
</div>
<router-view/>
</div>
</template>
<script>
// @ is an alias to /src
export default {
name: 'App',
components: {},
methods: {
demo() {
this.$router.push({
path: '/about',
query: {
id: 1,
},
});
},
},
};
</script>
result