Want to take a look at our new docs? Our new docs are now in beta. Have fun!

API:key 属性

key 属性

设置内部<router-view>组件的key属性

  • 类型: StringFunction

key属性赋值到<router-view>,这对于在动态页面和不同路径中进行转换很有用。不同的key会使页面组件重新渲染。

有几种方法可以设置key。有关更多详细信息,请参阅nuxt 组件中的nuxtChildKey属性。

export default {
  key(route) {
    return route.fullPath
  }
}