Skip to content

@pinia/root / pinia / Pinia

Pinia

Every application must own its own pinia to be able to create stores

Extended by

Properties

install()

ts
install: (app) => void;

Parameters

app: App<any>

Returns

void


state

ts
state: Ref<Record<string, StateTree>, Record<string, StateTree>>;

root state

Methods

use()

ts
use(plugin): Pinia

Adds a store plugin to extend every store

Parameters

plugin: PiniaPlugin

store plugin to add

Returns

Pinia

Released under the MIT License.