在​​plugins​​​新建​​route.js​​文件

export default ({
app
}) => {
app.router.beforeEach((to, from, next) => {
next()
console.log(to)
})
}

在​​nuxt.config.js​​配置

: [
'@/plugins/route'
],