query傳參 和 params傳參方式

王東煜發表於2019-12-17
 1.路由傳參:query
	data:{
		name:'',
		obj:{
	   	    a:1,
	   	    b:2
		}
	}
 	<router-link :to="{path:'/home',query:obj}"></router-link>
	
       const route={
	path:'/home',
	name:'home',
	component:home
	
	}
	
	2.路徑傳參:params
 	//第一種:
 	<router-link to="/home/123/234"></router-link>
	//路徑傳參 只能寫name 不能寫path
	//第二種:
	<router-link :to="{name:'home',params:{qqq:123,aaa:234}}">
		   </router-link>

       const route={
	path:'/home/:qqq/:aaa',
	name:'home',
	component:home
	
	} 

複製程式碼

相關文章