Vue - 복수의 옵션라우터 파라미터 여러 검색 옵션을 사용하여 구성 요소를 작성하려고 합니다. 경로에는 다음 중 하나를 지정할 수 있습니다. my-site.com/gallery my-site.com/gallery/search+keyword my-site.com/gallery/140 my-site.com/gallery/search+keyword/140/page/10 또는 기타 조합 이게 내 루트야 const galleryPageRoute = { path: '/gallery/:search?/:photocat?/:page(page\/\\d+)?', component: Gallery, name: 'Gallery', props: route => (Object.assign(route.params, { photoc..