Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
单页或布局上的中间件属性按预期工作。
但是当我尝试为每个页面定义中间件时,nuxt.config.js中间件不会被执行。使用
nuxt.config.js
{ router: { middleware: 'foo'} }
中间件必须是数组
{ router: { middleware: ['foo']} }