1.0.2 • Published 3 years ago

rsup-simple-data-store v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

rsup-simple-data-store

A rsup-simple-data-store to manage your data

installation

npm i rsup-simple-data-store

or

<script src="https://unpkg.com/rsup-simple-data-store@1.0.2/dist/simple-store.js"></script>

Useage

const store = new Store({
  list: [],
  isLoading: false,
  // ...
});

store.on("list", () => {
  //...something to do after your data changed
});

store.set({
  list: [//...new list],
});
1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago