Skip to content
On this page

WARNING

Although the library is already used in several enterprise-grade solutions, it's still the subject of active development, and the API may change even between minor versions.

Get Started


This library is still in early development, so expect breaking changes.
To install the latest version, add the package using your favorite package manager:

sh
pnpm add @bublina/store
sh
yarn add @bublina/store
sh
npm install @bublina/store

To use the library, you need to install the Vue 3 plugin:

ts
import { createApp } from 'vue'
import App from './App.vue'
import Bublina from '@bublina/store' 

const app = createApp(App)

app.use(Bublina) 

app.mount('#app')