Vue3 store+pinia 基本使用

这篇具有很好参考价值的文章主要介绍了Vue3 store+pinia 基本使用。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

Pinia是什么呢?

pinia是一个状态管理的库,用于跨组件、页面进行状态共享(这和Vuex、Redux一样),用起来像组合式API

Pinia和Vuex有什么区别

1、PInia的最初是为了探索Vuex的下一次迭代会是什么样子,结合了Vuex核心团队讨论中的许多想法;

2、最终,团队意识到Pinia已经实现了Vuex5中大部分内容,所以最终决定用Pinia来替代Vuex;

3、与Vuex相比,Pinia提供了一个更简单的API,具有更少的仪式,提供了Composition-API风格的API

4、更重要的是,与TypeScript一起使用时具有可靠的类型推断支持

与Vuex相比,Pinia很多的优势:

比如mutations不再存在:

1、mutations最初是为devtools集成,但这不在是问题

  1. 他们经常认为是非常冗长

更友好的TpeScipt支持,Vuex之前对Ts的支持很不友好

不在有modules的嵌套结构

你可以灵活使用每一个store,他们是通过扁平化的方式来相互使用的;

不在有命名空间的概念,不在需要记住他们的复杂关系

如何安装使用Pinia

pinia可在创建Vue3项目时勾选,即可创建成功,或者使用命令,便可安装。

npm install pinia
yarn add pinia

2、创建pinia文件

store文件里index.ts

import { defineStore } from 'pinia';

export const useNoiseStatistics = defineStore({
  id: 'counter',

  state: () => ({}),
  getters: {},
  actions: {},
});

在mian.ts里面进行引入

import { createApp } from 'vue'
import App from './App.vue'
import pinia from './stores'

createApp(App).use(pinia).mount('#app')
//定义关于counter的store
import { defineStore } from ‘pinia’

//defineStore 是返回一个函数 函数命名最好有use前缀,根据函数来进行下一步操作
export const useNoiseStatistics = defineStore('counter',{
    state: () => {
        count:99
    }
})

调用pinia,获取pinia状态值,导入Counter.ts,获取Counter.ts里面state.count

<template>
  <div class="home">
    <h2>Home View</h2>
    <h2>count: {{ counterStore.count }}</h2>
  </div>
</template>

<script setup>
  import useNoiseStatistics from '@/stores/counter';

  const counterStore = useNoiseStatistics()

</script>

<style scoped>
</style>

注意:pinia本身是响应式,当改变store的值,页面相应也会进行更改,pinia解构出来的state也是可以调用,但会失去响应式,需要toRef或者pinia自带storeToRefs

<template>
  <div class="home">
    <h2>Home View</h2>
    <h2>count: {{ counterStore.count }}</h2>
    <h2>count: {{ count }}</h2>
    <button @click="incrementCount">count+1</button>
  </div>
</template>

<script setup>
  import { toRefs } from 'vue'
  import { storeToRefs } from 'pinia'
  import useNoiseStatistics from '@/stores/counter';

  const counterStore =useNoiseStatistics()

  // const { count } = toRefs(counterStore)
  const { count } = storeToRefs(counterStore)


  function incrementCount() {
    counterStore.count++
  }

</script>

<style scoped>
</style>

store的核心部分:state,getters,actions

相当于:data、computed、methods

认识和定义State

state是store的核心部分,因为store是用来帮助我们管理状态

操作State

1、读取和写入state:

默认情况下,可以通过store实例访问状态来直接读取和写入状态


const counterStore = useNoiseStatistics()

counterStore.counter++
counterStore.name = 'coderWhy'

2、store.$reset()

可以调用store上的$reset()方法将状态重置到其初始值

const counterStore = useNoiseStatistics()
conterStore.$reset()

3、store.$patch

除了直接用store.counter++修改store,还可以调用$patch

它允许您使用部分‘state’对象同时应该多个修改

const counterStore = useNoiseStatistics()
counterStore.$patch({
    counter:100,
    name:'kobe'
})

4、store.$state

可以通过将其$state属性设置为新对象替换Store的整个状态

conterStore.$state = {
    counter:1,
    name:'why'
}

5、store.$subscribe

可以通过$subscribe监测到store数据变化

//可以通过 store 的 $subscribe() 方法查看状态及其变化,通过patch修改状态时就会触发一次
store.$subscribe((mutation, state) => { 
  // 每当它发生变化时,将整个状态持久化到本地存储
  localStorage.setItem('test', JSON.stringify(state))
})

操作getters

·Getters相当于store的计算属性:
  1. 它们可用defineStore()中的getters属性定义

  1. getters中可以定义接受一个state作为参数的函数

expoer const useNoiseStatistics = defineStore('counter',{
    state: () => {
        counter:100,
        firstname:'kobe'
    },
    getters:{
        doubleCounter(state){
            return state.counter *2
        }
    }
})
·访问Store里getters方法
  1. 访问当前store的getters:

const counterSotre = useNoiseStatistics()
console.log(counterStore.doublCounter)

2.我们可以使用this来访问当前的store实例中getters

expoer const useNoiseStatistics = defineStore('counter',{
    state: () => {
        counter:100,
        firstname:'kobe'
    },
    getters:{
        doubleCounter(state){
            return state.counter *2
        }
        doubleCounterAdd(){
            //this指向store
            return this.doubleCounter +1 
        }
    }
})

3、访问其它store的getters

import useUser from ./user

const userStore = useUser()

expoer const useNoiseStatistics = defineStore('counter',{
    state: () => {
        counter:100,
        firstname:'kobe'
    },
    getters:{
    //调用其它Store
        doubleCounterUser(){
            return this.doubleCounter + userStore.umu
        }
    }
})

4.通过getters可以返回一个函数,可以传参数

expoer const useNoiseStatistics = defineStore('counter',{
    state: () => {
        counter:100,
        firstname:'kobe'
    },
    getters:{
    //调用其它Store
        doubleCounter(state){
            return function (is) {
                return state.id + id
            }
        }
    }
})
const StoreConter = useNoiseStatistics();
//传参
StoreCounter.doublCounter(111)

操作actions

actions 相当于组件中的methods,可以使用defineStore()中的actions属性定义

expoer const useNoiseStatistics = defineStore('counter',{
    state: () => {
        counter:100,
        firstname:'kobe'
    },
    getters:{
    //调用其它Store
        doubleCounter(state){
            return function (is) {
                return state.id + id
            }
        }
    },
    actions:{
        increment(){
            this.counter++
        },
        //传参
        incrementnum(num){
            this.counter += num
        }
    }
})

和getters一样,在action中可以通过this访问整个store实例:文章来源地址https://www.toymoban.com/news/detail-464785.html

function increment(){
    //调用
    counterStore.increment()
}
function incrementnum(){
    counterStore.increment(10)
}

actions执行异步操作

actions:{
    async fetchHome(){
        //???请求
        const res = await fetch('?????')
        const data = await res.json()
        console.log('data',data)
        return data
    }
}
cosnt counterStore = useNoiseStatistics()

counterStore.fetchHome().then(res => {
    console.log(res)
})

到了这里,关于Vue3 store+pinia 基本使用的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • 【前端Vue】Vue3+Pinia小兔鲜电商项目第2篇:什么是pinia,1. 创建空Vue项目【附代码文档】

    Pinia 是 Vue 的专属状态管理库,可以实现跨组件或页面共享状态,是 vuex 状态管理工具的替代品,和 Vuex相比,具备以下优势 提供更加简单的API (去掉了 mutation ) 提供符合组合式API风格的API (和 Vue3 新语法统一) 去掉了modules的概念,每一个store都是一个独立的模块 搭配

    2024年03月21日
    浏览(48)
  • 前端开发小技巧 - 【Vue3 + TS】 - 在 TS + Vue3 中使用 Pinia,实现 Pinia 的持久化,优化Pinia(仓库统一管理)

    ts 中使用 pinia 和 Vue3 基本一致,唯一的不同点在于,需要根据接口文档给 state 标注类型,也要给 actions 标注类型; 以下都是 组合式API 的写法, 选项式API 的写法大家可以去官网看看; Pinia; 持久化插件 - pinia-plugin-persistedstate; 目标文件: src/types/user.d.ts (这里以 user.d.t

    2024年04月09日
    浏览(55)
  • Vue3中使用pinia

    目录 1、安装:npm install pinia 2、创建store文件并配置内部的index.js文件 3、main.js文件中配置 4、组件使用 4-1、 store.$reset()    4-2 store.$patch  5.订阅修改 6.Getter 7、Actions 效果图  点击按钮,界面变化  说明成功修改了pinia里面的数据,且界面刷新证明这种直接修该pinia数据的方式

    2024年02月07日
    浏览(41)
  • vue3项目中使用pinia

    前言: 官网地址 https://pinia.vuejs.org/zh/ 中文文档 https://pinia.web3doc.top/ pinia    作为Vue.js 状态管理库 类型安全、可扩展性以及模块化设计。 甚至让你忘记正在使用的是一个状态库。 优点:   优点 dev-tools 支持 跟踪动作、突变的时间线 Store 出现在使用它们的组件中 time travel

    2023年04月26日
    浏览(46)
  • vue3探索——pinia高阶使用

    以下是一些 Pinia 的其他高阶功能: storeToRefs() :响应式解构仓库,保证解构出来的数据是响应式的数据。 状态持久化 :Pinia 并没有内置的状态持久化功能,但你可以使用第三方库或自定义插件来实现状态的持久化。例如,你可以使用  localStorage  或  sessionStorage  来将状态

    2024年02月08日
    浏览(34)
  • pinia在vue3中的使用

    总结: 在store文件夹中建一个pinia的文件userStore.js 1.要想使用pinia必须先引入defineStore  这里我们使用es6的模块化语法导出的   import { defineStore } from \\\'pinia\\\' 2.然后使用export const useUserStore = defineStore(\\\'user\\\',{})   defineStore 方法有两个参数,第一个参数是模块化名字(也就相当于身份

    2024年02月15日
    浏览(36)
  • vue3使用pinia和pinia-plugin-persist做持久化存储

    插件和版本 src/store/home.js(可直接复制) 参考文章1 参考2 参考3

    2024年02月13日
    浏览(41)
  • Vue3中的pinia使用(收藏版)

    💂 个人网站:【紫陌】【笔记分享网】 💅 想寻找共同学习交流、共同成长的伙伴,请点击【前端学习交流群】 pinia 是 Vue 的存储库,它允许您跨组件/页面共享状态。就是和vuex一样的实现数据共享。 依据Pinia官方文档,Pinia是2019年由vue.js官方成员重新设计的新一代状态管理

    2024年01月25日
    浏览(35)
  • Pinia(二)了解和使用Store

    Store Store 是保存状态( state )和业务逻辑的实体, store 不应该与我们的组件绑定. 换句话说, store 就是全局状态. store 有三个关键概念, 分别是 state , getters 和 actions , 这与 Vue 组件中的 data , computed 和 methods 是相对应的概念. 定义 store 通过 defineStore 函数定义 store . defineStore 接收两个

    2024年02月02日
    浏览(50)
  • 从0开始搭建一个vue3+vite+ts+pinia+element-plus的项目

    前言:vue3+ts+vite大家已经都开始用了,最近也在学习,基本上是零基础开始ts的学习,很多语法知识是边写边查,没有系统的学习ts。此处展示从零开始,搭建的一个框架,方便拿来即用! 其中框架选择vue,语言选择typeScript 项目启动成功以后如下所示: 为了方便日常工作中

    2024年02月06日
    浏览(65)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包