vue-router路由基础

效果类似掘金导航, 导航切换 1.1 引入路由文件 <script src="./vue-router.js"></script> 复制代码 1.2 准备路由需要的组件 var index = Vue.component('index',{ template:'<div>首页</div>' }) var productType = Vue.component('product...