Hacker News new | ask | show | jobs
by merpnderp 1748 days ago
Should look at Vue with the composition-api layer, there's close to zero boilerplate.

A store in Vue 3 can basically be:

  export default { state: readonly(state), ...setterFunctions }
It doesn't get more easy to read and streamlined than that.