手写一个简单的vue-router(其实很简单)
首先回顾一下我们使用vue-router的过程。
// 1. 注册路由插件(这里执行的是对应插件的install方法,所以要实现一个静态的install方法)
Vue.use(VueRouter)
// 2.编写路由规则
const routes = [
{
path: '/',
name: 'Index',
component: Index
}
]
// 3. 创建 router 对象并且导出(由此得出VueRouter是一个类)
const router = new Vu
原创
2021-01-22 21:12:09 ·
392 阅读 ·
0 评论