首页 > 解决方案 > Nuxt-link 更改 url 但不更改页面内容

问题描述

每当我在components/feed.vue中使用它时:

<template><div><nuxt-link :to="{path: '/videos/new', query: { page:nextpage(currentpage) } }">next</nuxt-link></div></template>

或者

<template><div><nuxt-link :to="'/videos/new/?page=' + nextpage(currentpage)">next</nuxt-link></div></template>

当我点击链接时,网址发生了变化,但内容保持不变,我错过了什么吗?

编辑:当我在“/”上时它可以工作,但如果我已经在“/videos/new”上它就不行

标签: vue.jsnuxt.js

解决方案


最后很简单,只需要添加 watchQuery :

export default {
 watchQuery: ['page', 'order', 'q']
}

推荐阅读