vue router-view 组件的使用

router-view
主要是构建 SPA (单页应用) 时,方便渲染你指定路由对应的组件。你可以 router-view 当做是一个容器,它渲染的组件是你使用 vue-router 指定的
路由配置完成后, 就要使用 router-view 进行渲染了 (只要有子路由, 就要用它来渲染)

路由配置:

 {
  	  path:"/parent",//主路由
  	  component:parent,
	  children:[
		  {
		    path: '/parent/watch',
		    component: Watch
		  },
		  {
		    path: '/parent/Views',
		    component: Views,
		  }
	  ]
  }

 


 

你可能感兴趣的:(VUE)