This project adheres to Semantic Versioning.
To install StoreonVue to Vue app instance, pass the store instance to createStoreonPlugin
function.
import { createApp } from 'vue'
import { createStoreonPlugin } from '@storeon/vue'
import App from './App.vue'
import { store } from './store'
const app = createApp(App)
app.use(createStoreonPlugin(store))
app.mount('#app')
- Drop support for storeon < v3 and node < v10 (a9a27c)
- Add support for Composition API (6e77e0)
- Use dual-publish for ESModules (a1a76c)
- Use named export (3fd201)
- Remove unnecessary type declarations (d67d76)
- Add type definitions (3bd245)
- Simplify API (773929)
- change api to avoid component re-render (2b9a97)
- Initial release.