これまでのparamsの渡し方 これまではcreateRouterで指定した各遷移先にpropsを定義し、画面遷移の際に指定した値をparamsに入れてpushしてあげれば十分だった。 export const router = createRouter({ history: createWebHistory('/'), routes: [ { path: '/', name: 'first', component: FirstPage, }, { path: '/second', name: 'second', component: SecondPage, // ここで遷移元から受け取る変数を定義する。 props: route => ({id: route.params.id, text: route.params.text}), } ] }) しかし現在のVue Router(4.1