routoer.push()를 통해 children 라우터로 이동할 시 URL parameter가 사라지는 현상
http://localhost:8080/#/detail/0
위 상태에서 댓글 버튼을 통해
<button @click="$router.push('./comment')">댓글</button>
http://localhost:8080/#/detail/0/comment
로 이동하고 싶은데
http://localhost:8080/#/detail/comment
로 이동되고 있습니다.
<button @click="$router.push($route.params.id + '/comment')">댓글</button>
를 통해 해결할 수 있지만 한번 더 댓글 버튼을 누를 경우
http://localhost:8080/#/detail/0/0/comment
이렇게 되는 현상 때문에 사용할 수는 없어보이는데
어떤 방법이 있을까요?