简单的Vue.js路由配置步骤

vue路由:可以动态的往根组件里挂载组件
在学习vue路由时,记录一下vue的路由配置过程:
1.安装

npm install vue-router  --save   / cnpm install vue-router  --save

2、引入并 Vue.use(VueRouter) (main.js)

	import VueRouter from 'vue-router'

	Vue.use(VueRouter)

3、配置路由

	1、创建组件 引入组件


	2、定义路由  (建议复制s)

		const routes = [
		  { path: '/foo', component: Foo },
		  { path: '/bar', component: Bar },
		  { path: '*', redirect: '/home' }   /*默认跳转路由*/
		]

	3、实例化VueRouter

		const router = new VueRouter({
		  routes // (缩写)相当于 routes: routes
		})

	4、挂载

			
	new Vue({
	  el: '#app',
	  router,
	  render: h => h(App)
	})


	
	5 、根组件的模板里面放上这句话            




	6、路由跳转
	Go to Foo
	 Go to Bar

你可能感兴趣的:(VUE.JS)