Component Data Serialized #176
Answered
by
nickreese
dustinlacewell
asked this question in
Q&A
-
I was just curious if component data returned from the route data function undergoes JSON de/serialization like it does when NextJS's |
Beta Was this translation helpful? Give feedback.
Answered by
nickreese
May 15, 2021
Replies: 1 comment 1 reply
-
@dustinlacewell Great question. Data from the route's |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
nickreese
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@dustinlacewell Great question. Data from the route's
data
function is passed as is. No serialization is done, so you can passfunction
s,set
s, etc.