Skip to content

Latest commit

 

History

History
60 lines (39 loc) · 2.03 KB

CHANGELOG.md

File metadata and controls

60 lines (39 loc) · 2.03 KB

Change Log

This project adheres to Semantic Versioning.

3.0.0-beta.2

Breaking Changes

Installation process has changed

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')

2.0.0

  • Drop support for storeon < v3 and node < v10 (a9a27c)

1.1.0

  • Add support for Composition API (6e77e0)

1.0.0

  • Add support for Class Components (6e77e0)
  • Add helper functions (532121)

0.5.0

  • Use dual-publish for ESModules (a1a76c)

0.4.0

0.3.0

0.2.2

  • Remove unnecessary type declarations (d67d76)

0.2.1

  • Add type definitions (3bd245)

0.2.0

0.1.0

  • change api to avoid component re-render (2b9a97)

0.0.1

  • Initial release.