1. import { createStore } from 'redux'
    2. // 创建 reducer
    3. const reducer = (state, action) => {
    4. // 此处是各种样的 state处理逻辑
    5. return new_state
    6. }
    7. // 基于 reducer 创建 state
    8. const store = createStore(reducer)
    9. // 创建一个 action,这个 action 用 “ADD_ITEM” 来标识
    10. const action = {
    11. type: "ADD_ITEM",
    12. payload: '<li>text</li>'
    13. }
    14. // 使用 dispatch 派发 action,action 会进入到 reducer 里触发对应的更新
    15. store.dispatch(action)

    image.png