在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
1、Pinia是什么
所以有了pinia的出现 相较于vuex:
Pinia文档有这么一段话:
所以现在学习 2、Pinia简单上手首先我们初始化一个vite+vue+ts工程 pnpm create vite pinia-demo -- --template vue-ts 安装pinia pnpm i pinia 打开项目,编辑src目录下的mian.ts文件,引入Pinia // main.ts import { createApp } from 'vue' import App from './App.vue' import { createPinia } from 'pinia' createApp(App).use(createPinia()).mount('#app') 在 import { defineStore } from 'pinia' export const useCounterStore = defineStore('counter', { state: () => { return { count: 0, } }, getters: { doubleCount: (state) => state.count * 2, }, actions: { increment() { this.count++ }, }, })
我们也可以使用一个回调函数来返回 export const useCounterStore = defineStore('counter', () => { const count = ref(0) function doubleCount() { return count.value * 2 } function increment() { count.value++ } return { count, increment } }) 接着我们在 <script setup lang="ts"> import { useCounterStore } from './store/counter' const useCounter = useCounterStore() </script> <template> <h2>{{ useCounter }}</h2> <h2>{{ useCounter.count }}</h2> <h2>{{ useCounter.doubleCount() }}</h2> <button @click="useCounter.increment">increment</button> </template> <style> #app { font-family: Avenir, Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-align: center; color: #2c3e50; margin-top: 60px; } </style> 在使用 浏览器运行如下: 打开开发者工具查看
Pinia有多种对状态的修改方式:
const countPlus_1 = useCounter.count++ 使用 const countPlus_2 = useCounter.$patch({ count: useCounter.count + 1 }) const countPlus_3 = useCounter.$patch((state) => state.count++) 对状态的结构需要使用 const { count } = storeToRefs(useCounter) 3、使用体验
状态管理对于小项目来说更注重于方便和快捷(甚至可以不想需要),所以像vuex是稍微有些复杂了,像vue3出 到此这篇关于Vue状态管理之使用Pinia代替Vuex的文章就介绍到这了,更多相关使用Pinia代替Vuex内容请搜索极客世界以前的文章或继续浏览下面的相关文章希望大家以后多多支持极客世界! |
请发表评论