params를 보낼 때 params가 여러개이면
(1) 아주 간단하게 path 에 여러개를 추가해주시면 됩니다.
ex ) /post/:id?/:name?
// url = /post/1/demnodey
console.log(this.$route.params) // { id : '1', name: 'demnodey' }
참고 :: https://m.blog.naver.com/PostView.naver?isHttpsRedirect=true&blogId=psj9102&logNo=221430447361
(2) props로 받기
route 정의에서 props를 true로 놓으면
컴포넌트에서 props로 params를 받아서 처리해 줄 수 있음.
참고 :: https://any-ting.tistory.com/46