UNPKG

@mee4dy/crud

Version:

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

23 lines (22 loc) 379 B
import o from "./state.js"; import r from "./getters.js"; import s from "./actions.js"; import i from "./mutations.js"; class p { constructor(t = {}) { this.state = { ...o, ...t }, this.getters = { ...r }, this.actions = { ...s }, this.mutations = { ...i }; } } export { p as CrudStore }; //# sourceMappingURL=index.js.map