vue the list on this page clicks to jump to this page, the address will change, but the page will not change
<div class="bt" >
<li v-for="(lists, index) in $store.state.listNews" :key="index">
<router-link class="inner" :to="{ path: "/words", query: {index} }">
<div class="wrap_l">
{{ lists.title }}
<div class="boot">
<span>{{ lists.src }}</span>
</div>
</div>
<div class="wrap_r">
<img :src="lists.pic" alt="loading">
</div>
</router-link>
</li>
</div>