单个页面或布局上的中间件属性按预期工作。
但是,当我尝试使用nuxt.config.js为每个页面定义中间件时,中间件不会执行。使用
nuxt.config.js
{ router: { middleware: 'foo'} }
发布于 2019-03-23 01:11:59
中间件必须是数组
{ router: { middleware: ['foo']} }
https://stackoverflow.com/questions/51982181
相似问题