Vue3 #11
서론 #10에서는 라우터 설정을 했고 #11에서는 라우터 설정이 후 옵션을 부여합니다. 본론 props 보내기 { path: "/", name: "Main", component: MainComponent, props: { foo: "bar" } }, { path: "/list", name: "List", component: ListComponent, props: true }, { path: "/:pathmatch(.*)", name: "Not-Found", component: ErrorPage }, { path: "/post/:id", component: DetailComponent, props: true }, https://github.com/vuejs/router/blob/main/packages/r..
2023. 12. 5.