Nuxt plugins Helper

Manage state using the Helper registered with the Nuxt plugins feature.

URI helper://{**path}
Path

Specify the provide key for the Nuxt plugins Helper.

Example helper://exampleHelper

ViewState

Providing Helpers

Use this when you want to describe a state that cannot be represented by other StateSources or when you want to associate multiple StateSources.

Register Nuxt plugins.

tsplugins/exampleState.ts

Retrieve and Update

200
{ "key1": "example1", "key2": "example2" }
vue

ActionState

You can register actions to be executed on the client side.

Providing Helpers

tsplugins/exampleAction.ts

Action

vue