Is it possible for a route to have async data loader?
I want to know if it's possible for a route to have lazy import of a data function, just like in SolidStart, when you're exporting
As you can see on this screenshot, component is being lazily loaded, but the data function is not. I'm thinking about something like this -
and then passing it to
so then I could retrieve the data with
If it's not possible, what can be done to achieve something like this?
routeData .As you can see on this screenshot, component is being lazily loaded, but the data function is not. I'm thinking about something like this -
and then passing it to
data={ }so then I could retrieve the data with
useRouteDataIf it's not possible, what can be done to achieve something like this?

