如果让你从零开始写一个 vuex 说说你的思路

发布于 2023-05-05 20:16:13 字数 669 浏览 45 评论 0

  1. 实现一个响应式的 State,用于存储全局状态
  2. 允许用户定义 mutation 和 action,用来更改状态
  3. 做成插件的形式,绑定在 原型上,便于所有组件获取 store
  4. 实现 mapState 等方法,将状态代理到 vue 实例上
class Store {
  constructor(state) {
    this.state = Vue.observe(state);
    this.mutations = {};
    this.actions = {};
  }
  
  commit(type, payload) {
    const mutation = this.mutations[type];
    mutation(this.state, payload);
  }
  
  dispatch(type, payload) {
    const action = this.actions[type];
    action(this, payload);
  }
  
  registerMutation(type, handler) {
    this.mutations[type] = handler;
  }
  
  registerAction(type, handler) {
    this.actions[type] = handler;
  }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

关于作者

美人如玉

暂无简介

0 文章
0 评论
24 人气
更多

推荐作者

懂王

文章 0 评论 0

清秋悲枫

文章 0 评论 0

niceone-tech

文章 0 评论 0

小伙你站住

文章 0 评论 0

刘涛

文章 0 评论 0

南街九尾狐

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文