文档
Pinia 是 Vue 的专属状态管理库,可以实现跨组件或页面共享状态,是 vuex 状态管理工具的替代品,和 Vuex相比,具备以下优势
npm init vue@latest
npm i pinia
注册pinna
import { createPinia } from 'pinia'
const app = createApp(App)
// 以插件的形式注册
app.use(createPinia())
app.mount('#app')
1- 定义store
import { defineStore } from "pinia";
import { ref } from "vue";
export const useCounterStore = defineStore('counter', ()=> {
// 数据 state
const count = ref(0)
// 修改数据的方法 action
const increment = ()=> {
count.value++;
}
return {
count,
increment
}
})
2- 组件使用store
<script setup>
// 1. 导入use方法
import { useCounterStore } from '@/stores/counter'
// 2. 执行方法得到store store里有数据和方法
const counterStore = useCounterStore()
</script>
<template>
<button @click="counterStore.increment">
{{ counterStore.count }}
</button>
</template>