Vue3 Not Found Page Posted on 2022-04-17 Edited on 2023-07-31 In Web , vue Page Not Found잘못된 주소로 접근하였을 경우 router를 통해 not found(component) 페이지를 출력할 수 있다 routes 폴더에 NotFound.vue 파일 생성 routes/index.js 에 라우트 등록 123456789routes :[ { path:'/:notFound(.*)', // /:[파라미터이름 바꿔도됨](.*) // 정규표현식(RegExp) // . 임의의 한 문자와 일치 // * 와일드 카드 component:NotFound // NotFound 컴포넌트로 보여줌 }]