UNPKG

@mee4dy/crud

Version:

Create a backend and frontend in 5 minutes! With our powerful full stack crud system, customize it to suit you.

29 lines (26 loc) 496 B
import * as _ from 'lodash'; import state from './state'; import getters from './getters'; import actions from './actions'; import mutations from './mutations'; export class CrudStore { constructor(params = {}) { this.state = { ...state, ...params, }; this.getters = { ...getters, }; this.actions = { ...actions, }; this.mutations = { ...mutations, }; } public state; public getters; public actions; public mutations; }