clearNuxtState
En esta página
::note
This method is useful if you want to invalidate the state of useState. You can also reset the state to its initial value by passing { reset: true } as the second parameter.
::
Type#
ts [Signature]
export function clearNuxtState (keys?: string | string[] | ((key: string) => boolean), opts?: ClearNuxtStateOptions): void
Parameters#
keys: One or an array of keys that are used inuseStateto delete their cached state. If no keys are provided, all state will be invalidated.opts: An options object to configure the clear behavior.reset:badge[v4.4]{color="info" size="xs" class="align-middle"}: When set totrue, resets the state to the initial value provided by theinitfunction ofuseStateinstead of setting it toundefined. When not specified, defaults to the value ofexperimental.defaults.useState.resetOnClearin your Nuxt config (which istruewithcompatibilityVersion: 5).