Nuxt-link click no response

background

  • For example, the following 2 addresses
describe routing page
user list page /user /pages/user/user.vue
User Details Page /user/idxx /pages/user/_id.vue
  • 用户详情页面Want to fall back to the page when we're stuck 用户列表页面. In 用户详情页面have code like this.
<nuxt-link to="/user"> 回退  </nuxt-link>
  • Clicking to discover the page does not jump.

solution

  • Add any parameter
<nuxt-link to="/user?act=1"> 回退  </nuxt-link>

Guess you like

Origin blog.csdn.net/baidu_19473529/article/details/128684869