introducePinia is a lightweight state management library for Vue.js that has become very popular recently. It uses the new reactivity system in Vue 3 to build an intuitive and fully typed state management library. Pinia's success can be attributed to its unique features for managing stored data (scalability, storage module organization, grouping of state changes, multi-store creation, etc.). On the other hand, Vuex is also a popular state management library built for the Vue framework, and it is also the state management library recommended by the Vue core team. Vuex focuses heavily on application scalability, developer ergonomics, and confidence. It is based on the same flow architecture as Redux. Installation and UsageInstall vuex
Install pinia
After installation, just use it according to the following writing method. As long as you can use vuex, you can use the basic usage of pinia. The writing method of pinia plug-in is not shown here. Simple comparison of writing differences and similaritiesVuex and pinia are written by the same team members, but pinia is more user-friendly and simpler. How to write and use vuex in vue3 //store.js import { createStore } from 'vuex' export default createStore({ // define data state: { a:1 }, // define method mutations: { xxx(state,number){ state.a = number } }, // Asynchronous method actions: { }, // Get data getters: { getA:state=>return state.a } }) // Using <template> in vue3 <div> {{number}} <button @click="clickHandle">Button</button> </div> </template> <script> import {useStore} from "vuex" export default { setup(){ let store = useStore() // ⭐⭐⭐ If you directly get the value of state, you must use computed to achieve data responsiveness. If you directly get store.state.a, you will not monitor data changes. Or use getter, you don't need to use computed let number = computed(()=>store.state.a) const clickHandle = () => { store.commit("xxx","100") } return{number,clickHandle} } } <script> How to write and use pinia in vue3 //store.js import { defineStore } from 'pinia' // defineStore returns a function after calling it, call this function to get the Store entity export const GlobalStore = defineStore({ // id: required, unique among all Stores id: "myGlobalState", // state: function that returns an object state: () => ({ a: 1, }), getters: {}, actions: { setXXX(number) { this.a = number; }, }, }); // Using <template> in vue3 <div> {{number}} <button @click="clickHandle">Button</button> </div> </template> <script> import {GlobalStore} from "@/store/store.js" export default { setup(){ let store = GlobalStore(); // ⭐⭐⭐ If you directly get the value of state, you must use computed to achieve data responsiveness. If you directly get store.state.a, you will not monitor data changes. Or use getter, you don't need to use computed (this is the same as vuex) let number = computed(()=>store.a) const clickHandle = () => { store.setXXX("100") } return{number,clickHandle} } } <script> From the comparison of these two codes, we can see that using pinia is more concise and lightweight. pinia cancels the original mutations and merges them into actions. When getting a value, we can directly click on the value without using .state. The same is true for methods. Pros and Cons of Vuex and PiniaAdvantages of Vuex
Disadvantages of Vuex
Advantages of Pinia
Disadvantages of Pinia
When to use Pinia and when to use VuexFrom my personal experience, since Pinea is lightweight and small in size, it is suitable for small to medium applications. It is also suitable for low-complexity Vue.js projects, as some debugging features like time travel and editing are still not supported. Using Vuex for small to medium Vue.js projects is overkill as it is heavyweight and has a significant impact on performance degradation. Therefore, Vuex is suitable for large-scale, high-complexity Vue.js projects. SummarizeThis is the end of this article about the pitfalls of vuex and pinia in vue3. For more relevant vue3 vuex and pinia pitfalls, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Docker custom network container interconnection
>>: Manual and scheduled backup steps for MySQL database
Problem Description I recently encountered a prob...
MGR (MySQL Group Replication) is a new feature ad...
Of course, it also includes some personal experien...
Table of contents 1. Constructors and prototypes ...
This article shares the specific code of jQuery t...
Table of contents 1. Pull the image 2. Create a l...
Table of contents 1. Reverse proxy preparation 1....
Grayscale release refers to a release method that...
Another important aspect of separating structure ...
I just started learning about databases recently....
<br />Green is between yellow and blue (cold...
When the table header is fixed, it needs to be di...
Record some of the processes of using node-media-...
By default, MySQL character types are not case-se...
Installation, configuration, startup, login and c...