import {routerMiddle} from 'router-middle' router为new Router()的对象 routerMiddle(router) 然后在页面上写
<script> export default { name: 'Home1', middleware:[(routing, next)=>{ console.log("中间件一") next() },(routing, next)=>{ console.log("中间件二") next() }], } </script>routing对象里面包含 to from router to为当前要跳转的路径 from为上一个页面的路径 router路由对象
next为执行下一个中间件 如果不执行页面不会加载,也不会执行下一个中间件。