Skip to content

Instantly share code, notes, and snippets.

@Towerful
Towerful / RelationalStore.js
Last active May 24, 2018 12:48
Relational Model Store for Vue.js
import Vue from 'vue';
export default class RelationalStore {
/**
* @param {object} options
*/
constructor(options) {
this._options = options;
this.state = {};