Код: Выделить всё
import { createRootRoute, createRoute } from '@tanstack/react-router';
export const rootRoute = createRootRoute({
component: () => (
hello
),
loaderDeps: ({ search }) => {
console.log(search?.aaa);
return {
aaa: search?.aaa,
};
},
} as any);
export const indexRoute = createRoute({
getParentRoute: () => rootRoute,
path: '/',
component: () => (
hello
),
});
Код: Выделить всё
routes.tsx?t=1763820637415:10 here
routes.tsx?t=1763820637415:10 here
routes.tsx?t=1763820637415:10 undefined
Подробнее здесь: https://stackoverflow.com/questions/798 ... ram-at-all
Мобильная версия