说说 Pinia 与 Vuex 的区别?

Pinia 是 Vue 官方推荐的 新一代状态管理库,作为 Vuex 的"接班人",它在使用体验、类型支持、性能等方面做了大量优化。我们下面分为 ✅ 概念对比、📦 核心使用对比、🧬 源码实现机制、🎯 何时使用 Pinia 等维度全面解析。


✅ Pinia vs Vuex 核心对比

特性 Pinia Vuex(v3/v4)
是否官方维护 ✅ Vue 核心团队维护 ✅ Vue 核心团队维护
模块化支持 ✅ 原生支持多个 store ✅ 需要命名空间模块
使用方式 Composition API 风格(函数式) 选项式 API
TypeScript 支持 ✅ 极佳(自动推导) ⚠️ 一般,需要手动声明
Devtools 支持 ✅ Vue Devtools 完整集成 ✅ 支持
学习曲线 ✅ 简洁直观 ⚠️ 有点"重"
体积与性能 ✅ 更轻更快 ⚠️ 更大更复杂
Mutation ❌ 不存在 mutation,直接修改 ✅ 必须通过 mutation 修改
Store 动态注册 ✅ 更灵活、热更新友好 ⚠️ 动态模块稍麻烦
SSR 支持 ✅ 默认支持 ⚠️ 需要额外处理

📦 使用对比示例

🔹 Vuex 示例

js 复制代码
// store.js
export default new Vuex.Store({
  state: { count: 0 },
  mutations: {
    increment(state) { state.count++ }
  },
  actions: {
    asyncIncrement({ commit }) {
      setTimeout(() => commit('increment'), 1000)
    }
  }
})

🔹 Pinia 示例

js 复制代码
// useCounterStore.ts
export const useCounterStore = defineStore('counter', {
  state: () => ({ count: 0 }),
  actions: {
    increment() {
      this.count++
    },
    async asyncIncrement() {
      await new Promise(r => setTimeout(r, 1000))
      this.increment()
    }
  }
})

✅ 没有 mutations,直接在 actions 修改 state!


🧬 源码底层分析(简化理解)

1.Pinia 的核心是 defineStore()

js 复制代码
export function defineStore(id, options) {
  return function useStore() {
    const store = createSetupStore(id, options)
    return store
  }
}
  • 每次调用 useStore() 都返回当前 store 实例;
  • state 是通过 reactive() 创建的;
  • actions 是自动绑定了 this 的普通函数;
  • Pinia 底层大量使用了 Vue reactivity 包如 reactive()、effectScope() 等。

2.Vuex 的核心则是 Store 构造器

js 复制代码
class Store {
  constructor(options) {
    this._mutations = options.mutations
    this._actions = options.actions
    this._state = reactive({ data: options.state() })
  }

  commit(type, payload) {
    this._mutations[type](this.state, payload)
  }

  dispatch(type, payload) {
    return this._actions[type]({ commit, state }, payload)
  }
}

Vuex 使用了 commit() 来限制只能通过 mutations 改变 state,增强可追踪性(但使用繁琐)。


🧠 总结:为什么推荐使用 Pinia?

🎯 实际开发中优点:

  • 代码更清爽、易读
  • 没有 mutation 的繁琐模板代码
  • 支持组合式函数风格(和 Vue3 完美搭配)
  • 类型推导极佳,在 TS 项目中几乎无痛
  • 更适合大型项目拆分模块、动态注册 store、提高维护性

🔧 什么时候还用 Vuex?

  • 旧 Vue2 项目 中维护成本高,不想迁移;
  • 项目使用 Vuex 的插件系统(如持久化、状态追踪)依赖很重。

如果你项目已经在用 Vue3 + Composition API,那我 100% 推荐直接上 Pinia。

相关推荐
AC赳赳老秦21 小时前
DeepSeek教育科技应用:智能生成个性化学习规划与知识点拆解教程
前端·网络·数据库·人工智能·学习·matplotlib·deepseek
计算机毕设VX:Fegn08951 天前
计算机毕业设计|基于springboot + vue在线考试系统(源码+数据库+文档)
数据库·vue.js·spring boot·后端·课程设计
布列瑟农的星空1 天前
Playwright使用体验
前端·单元测试
卤代烃1 天前
🦾 可为与不可为:CDP 视角下的 Browser 控制边界
前端·人工智能·浏览器
_XU1 天前
AI工具如何重塑我的开发日常
前端·人工智能·深度学习
C_心欲无痕1 天前
vue3 - defineExpose暴露给父组件属性和方法
前端·javascript·vue.js·vue3
鹿人戛1 天前
HarmonyOS应用开发:相机预览花屏问题解决案例
android·前端·harmonyos
萌萌哒草头将军1 天前
绿联云 NAS 安装 AudioDock 详细教程
前端·docker·容器
计算机毕设VX:Fegn08951 天前
计算机毕业设计|基于springboot + vue宠物医院管理系统(源码+数据库+文档)
数据库·vue.js·spring boot·后端·课程设计
GIS之路1 天前
GIS 数据转换:使用 GDAL 将 GeoJSON 转换为 Shp 数据
前端