UNPKG

beedle

Version:

Beedle is a tiny little library to help you manage state across your application. Inspired by great libraries like Vuex and Redux, Beedle creates a central store that enables you to both better control and cascade state across your application.

11 lines (9 loc) 230 B
import actions from './actions.js'; import mutations from './mutations.js'; import initialState from './state.js'; import Store from '../lib/beedle.js'; export default new Store({ actions, mutations, initialState });