docs: add more keywords for reducer/reviver docs

https://github.com/nuxt/nuxt/issues/21832#issuecomment-1996991526
This commit is contained in:
Daniel Roe 2024-03-15 13:17:06 -07:00
parent b9168d0b0b
commit 6b1f3438b6
No known key found for this signature in database
GPG Key ID: CBC814C393D93268
1 changed files with 2 additions and 2 deletions

View File

@ -128,9 +128,9 @@ Nuxt exposes the following properties through `ssrContext`:
It is also possible to use more advanced types, such as `ref`, `reactive`, `shallowRef`, `shallowReactive` and `NuxtError`.
Since [Nuxt v3.4](https://nuxt.com/blog/v3-4#payload-enhancements), it is possible to define your own serializer/deserializer for types that are not supported by Nuxt.
Since [Nuxt v3.4](https://nuxt.com/blog/v3-4#payload-enhancements), it is possible to define your own reducer/reviver for types that are not supported by Nuxt.
In the example below, we define a serializer for the [Luxon](https://moment.github.io/luxon/#/) DateTime class.
In the example below, we define a reducer (or a serializer) and a reviver (or deserializer) for the [Luxon](https://moment.github.io/luxon/#/) DateTime class, using a payload plugin.
```ts [plugins/date-time-payload.ts]
/**