npm i pinia --save
import './assets/main.css' import { createApp } from 'vue' import App from './App.vue' //1. 导入 import { createPinia } from 'pinia' //2. 创建 const pinia = createPinia() const app = createApp(App) //3. 使用 app.use(pinia) app.mount('#app')
. 在默认示例的基础增加 msg
. 第一个参数 counter 是你的应用中 Store 的唯一 ID,Pinia 将用它来连接 store 和 devtools
. 第二个参数接收 option 对象或 setup 函数;setup 函数和组合式 API 类似,且功能更灵活
import { defineStore } from 'pinia' import { ref, computed } from 'vue' export const useCounterStore = defineStore('counter', ()=>{ //state - ref() const count = ref(0) const msg = ref('hi,there.') //getters - computed() const doubleCount = computed( () => count.value * 2 ) //action - function() const increment = () => count.value++ return { count, msg, doubleCount, increment } })
逻辑 - 引入仓库、创建仓库实例、使用仓库数据;创建仓库实例前无法使用
<script setup> import { useCounterStore } from '@/stores/counter'; const store = useCounterStore(); console.log('store', store); </script>
结构 - 渲染仓库数据;这里采用内联事件
<template> <div>{{ store.count }}</div> <div>{{ store.msg }}</div> <div>{{ store.doubleCount }}</div> <div @click="store.increment">store handle</div> </template>
let { count, increment } = counterStore;
<div>仓库数据 - {{ store.count }} - {{ count }}</div>
import { storeToRefs } from 'pinia'; let { count, increment } = storeToRefs(counterStore);