== 在一个页面中显示三个不同的组件需要改变以往的路径写法==
案例如下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<script src="lib/vue.js"></script>
<script src="lib/vue-router.js"></script>
</head>
<body>
<div id="app">
<router-view></router-view>
<router-view name="login"></router-view>
<router-view name="reg"></router-view>
</div>
<script>
var account={template:'<h1>account组件</h1>'};
var login={template:'<h1>login组件</h1>'};
var reg={template:'<h1>reg组件</h1>'};
const router=new VueRouter({
routes:[
{path:'/',components:{
//default就是默认值的意思它表示这个路由匹配规则如果没有指定模板视图的名字就将以这个组件填充
default:account,
login:login,
reg:reg
}}
]
})
var vm=new Vue({
el:'#app',
router
})
</script>
</body>
</html>