search
HomeWeb Front-endVue.jsA brief analysis of how to use Pinia state management tool in Vue projects

VueHow to use Pinia state management tool in the project? The following article will talk about the use of Pinia state management tools in Vue projects. I hope it will be helpful to you!

A brief analysis of how to use Pinia state management tool in Vue projects

Pinia official website says: Pinia is a repository for Vue that allows you to share state across components/pages. Vuex can also be used as a state management tool, so what is the difference between the two?
A brief analysis of how to use Pinia state management tool in Vue projects

The difference between Pinia and Vuex

  • Pinia only has stores, getters, actions, and no mutations, which simplifies the operation of state management. [Related recommendations: vuejs video tutorial, web front-end development]
  • pinia module division does not require modules,
  • pinia automated code splitting
  • Pinia has good support for ts and the composition API of vue3
  • Pinia is smaller in size and has better performance

Use Pinia

defineStore( ) The first parameter of the method: the name of the container, the name must be unique and cannot be repeated
defineStore( ) The second parameter of the method: configuration object, place state, getters, actions
state Attributes: Used to store the global state
gettersAttributes: Used to monitor or calculate state changes, with caching function
actionsAttribute: Modify state global state data, which can be asynchronous or synchronous
PiniaCan be used in vue2.x or vue3.x

  • Installation
yarn add pinia -S
  • main.jsIntroduction
import {createApp} from "vue"
import App from "./app.vue"
import store from "./store/index.js"
const app = createApp(App);
const store = createPinia();
app.use(store).mount("#app")
  • In the store file Create a new test.js under the folder
import {definePinia} from "pinia"
export default testStore = definePinia('testId',{
    state:()=>{
         tname:"test",
         tnum:0,
    },
    getters:{
       changeTnum(){
           console.log("getters")
           this.tnum++;
       }
    },
    actions:{
       addNum(val){
          this.tnum += val
       }
    },
    //持久化存储配置
    presist:{
         enable:true,//
         strategies:[
            {
            key:"testId",
            storage:localStorage,
            paths:['tnum']
            } 
         ]
    }
})

When using actions, you cannot use arrow functions because the arrow function binding is external this. This in actions points to the current store

  • Create a new index.js under the store folder for easy management
import {createPinia} from "pinia"
const store = createPinia();
export default store
  • NewA.vue component, introduces the store module and storeToRefs method
    storeToRefs: Deconstruct the data in store and make it responsive data
<template>
    <div>
        <div> {{tname}}</div>
        <div> {{tid}}</div>
        <div> tnum: {{tnum}}</div>
        <div> {{tchangeNum}}</div>
        <div><button @click="tchangeName">修改</button></div>
        <div> <button @click="treset">重置</button></div>
        <div @click="actionsBtn">actionsBtn</div>
    </div>
</template>
<script setup>
import { storeToRefs } from &#39;pinia&#39;
import { useStore } from &#39;../store/user&#39;
import { useTest } from &#39;../store/test.js&#39;
const testStore = useTest();
let { tname, tchangeNum, tnum } = storeToRefs(testStore)
</script>

Two ways to directly modify data

Compared with using $pathto modify data directly, the official has made it clear$patch The method is optimized and will speed up the modification, which is of great benefit to the performance of the program. So if you update status data with multiple pieces of data at the same time, it is recommended to use the $patch method to update.
Although it can be modified directly, due to the code structure, global state management should not modify the state directly at each component. It should be modified in a unified method in actions (piain does not have mutations) .

//直接修改数据
tchangeName(){
     tname.value = "测试数据";
     tnum.value++;
}
//当然也可以使用`$path`批量修改
tchangeName(){
     testStore.$path(state=>{
          state.tname = "测试数据";
          state.value = 7;
     })
}

Use actions to modify data

Directly call the method in actions, and you can pass parameters

const actionsBtn = (){
      testStore.addNum(5)  
}

Reset the data in the state

## There is a

$reset method in #store, which can directly reset the data in store

const treset = (){
    testStore.$reset()
}

Pinia persistent storage

    To achieve persistent storage, you need to use the following plug-in to use
  • yarn add  pinia-plugin-persist
    to configure the
  • index.js file under the store folder. Introduce pinia-plugin-presistplugin
  • import {createPinia} from "pinia"
    import piniaPluginPresist from "pinia-plugin-presist"
    const store = createPinia();
    store.use(piniaPluginPresist)
    export default store
    Configure the test.js file under the stoe folder and use the
  • presist attribute to configure
  • import {definePinia} from "pinia"
    export default testStore = definePinia(&#39;testId&#39;,{
        state:()=>{
             tname:"test",
             tnum:0,
        },
        getters:{
           changeTnum(){
               console.log("getters")
               this.tnum++;
           }
        },
        actions:{
           addNum(val){
              this.tnum += val
           }
        },
        //持久化存储配置
        presist:{
             enable:true,//
             strategies:[
                {
                key:"testId",
                storage:localStorage,
                paths:[&#39;tnum&#39;]
                } 
             ]
        }
    })
  • enable:true, enable persistent storage, the default is to use sessionStorage to store -
    strategies, proceed More configuration -
    key, when the key is not set, the key of storage is the first attribute of definePinia. If the key value is set, the attribute name of storage is customized
  • storage:localStorage, set the cache mode to local storage
  • paths, if not set, the data used in state will be processed Persistence storage, when setting, only the set attributes are persistently stored
Pinia modular implementation

Modular implementation means creating a new js file in the store for the module to be used , such as

user.js file. Then the configuration content is the same as other modules, set according to your own needs, and then introduced on the corresponding page.
A brief analysis of how to use Pinia state management tool in Vue projects

The stores in Pinia call each other

For example:

test.jsGetuser.js The name attribute value of state is introduced in test.js user.js

import { defineStore } from &#39;pinia&#39;
import { userStore } from "./user.js"
export const useTest = defineStore("testId", {
	state: () => {
		return {
			tid: "111",
			tname: "pinia",
			tnum: 0
		}
	},
	getters: {
		tchangeNum() {
			console.log(&#39;getters&#39;)
			return this.tnum + 100
		}
	},
	actions: {
		tupNum(val) {
			console.log(&#39;actions&#39;)
			this.tnum += val;
		},
		getUserData() {
			console.log(useStore().name);
			return useStore().name;
		},
	},
	persist: {
		//走的session
		enabled: true,
		strategies: [
			{
				key: "my_testId",
				storage: localStorage,
				paths: [&#39;tnum&#39;]
			}
		]
	}
})

user.js

import { defineStore } from &#39;pinia&#39;
export const useStore = defineStore(&#39;storeId&#39;, {
  state: () => {
    return {
      num: 0,
      name: &#39;张三&#39;
    }
  }
})

A.vue component, call the getUserData method in test.js to get uesr.js#name value in ##<pre class='brush:php;toolbar:false;'>const actionBtn = () =&gt; { testStore.getUserData() };</pre><p>(学习视频分享:<a href="https://www.php.cn/course/list/91.html" target="_blank" textvalue="编程基础视频">编程基础视频</a>)<br></p>

The above is the detailed content of A brief analysis of how to use Pinia state management tool in Vue projects. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:csdn. If there is any infringement, please contact admin@php.cn delete
Vue常见面试题汇总(附答案解析)Vue常见面试题汇总(附答案解析)Apr 08, 2021 pm 07:54 PM

本篇文章给大家分享一些Vue面试题(附答案解析)。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。

5 款适合国内使用的 Vue 移动端 UI 组件库5 款适合国内使用的 Vue 移动端 UI 组件库May 05, 2022 pm 09:11 PM

本篇文章给大家分享5 款适合国内使用的 Vue 移动端 UI 组件库,希望对大家有所帮助!

vue中props可以传递函数吗vue中props可以传递函数吗Jun 16, 2022 am 10:39 AM

vue中props可以传递函数;vue中可以将字符串、数组、数字和对象作为props传递,props主要用于组件的传值,目的为了接收外面传过来的数据,语法为“export default {methods: {myFunction() {// ...}}};”。

手把手带你利用vue3.x绘制流程图手把手带你利用vue3.x绘制流程图Jun 08, 2022 am 11:57 AM

利用vue3.x怎么绘制流程图?下面本篇文章给大家分享基于 vue3.x 的流程图绘制方法,希望对大家有所帮助!

聊聊vue指令中的修饰符,常用事件修饰符总结聊聊vue指令中的修饰符,常用事件修饰符总结May 09, 2022 am 11:07 AM

本篇文章带大家聊聊vue指令中的修饰符,对比一下vue中的指令修饰符和dom事件中的event对象,介绍一下常用的事件修饰符,希望对大家有所帮助!

如何覆盖组件库样式?React和Vue项目的解决方法浅析如何覆盖组件库样式?React和Vue项目的解决方法浅析May 16, 2022 am 11:15 AM

如何覆盖组件库样式?下面本篇文章给大家介绍一下React和Vue项目中优雅地覆盖组件库样式的方法,希望对大家有所帮助!

通过9个Vue3 组件库,看看聊前端的流行趋势!通过9个Vue3 组件库,看看聊前端的流行趋势!May 07, 2022 am 11:31 AM

本篇文章给大家分享9个开源的 Vue3 组件库,通过它们聊聊发现的前端的流行趋势,希望对大家有所帮助!

react与vue的虚拟dom有什么区别react与vue的虚拟dom有什么区别Apr 22, 2022 am 11:11 AM

react与vue的虚拟dom没有区别;react和vue的虚拟dom都是用js对象来模拟真实DOM,用虚拟DOM的diff来最小化更新真实DOM,可以减小不必要的性能损耗,按颗粒度分为不同的类型比较同层级dom节点,进行增、删、移的操作。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software