Vue>> reo>> 返回
项目作者: fengzilong

项目描述 :
🍯 regularjs and stateman based spa framework, inspired by redux, vuex and choo
高级语言: JavaScript
项目地址: git://github.com/fengzilong/reo.git
创建时间: 2016-09-23T02:22:21Z
项目社区:https://github.com/fengzilong/reo

开源协议:MIT License

下载


reo

build

inspired by redux, vuex and choo

Overview

  1. import reo from 'reo'
  2. const app = reo()
  3. app.use( plugin )
  4. app.model( ... )
  5. app.actions( ... )
  6. app.getters( ... )
  7. app.router( ... )
  8. app.start( '#app' )

Real world example

  1. import reo from 'reo'
  2. const app = reo()
  3. app.model( {
  4. name: 'counter',
  5. state: { count: 0 },
  6. reducers: {
  7. add( state ) {
  8. state.count++
  9. },
  10. minus( state ) {
  11. state.count--
  12. }
  13. }
  14. } )
  15. app.getters( {
  16. count: state => state.counter.count
  17. } )
  18. app.actions( {
  19. add( { commit } ) {
  20. commit( 'counter/add' )
  21. },
  22. minus( { commit } ) {
  23. commit( 'counter/minus' )
  24. }
  25. } )
  26. const Counter = {
  27. getters: {
  28. c: 'count'
  29. },
  30. template: `
  31. <button on-click="{ this.dispatch( 'minus' ) }">-</button>
  32. { c }
  33. <button on-click="{ this.dispatch( 'add' ) }">+</button>
  34. `,
  35. }
  36. app.router( {
  37. routes: [
  38. { path: '/', component: Counter }
  39. ]
  40. } )
  41. app.start( '#app' )

License

MIT © fengzilong