backgroundWith the gradual application of Vue3, the demand for state management is increasing. Initially, state management was based on Vuex4, but Vuex4 also exposed some problems. From a personal point of view, Vuex4 is similar to a transitional product, and its support for TypeScript is not complete. If you use TypeScript to write components, you need to follow certain steps to correctly infer types, and it is not friendly to the use of modules. Kia King, a core contributor of Vuex, also said that Vuex5 is already in the plan and can provide complete TypeScript support. So before Vuex5 comes out, or if Vuex is directly "abandoned", are there any other state management solutions? Provide / InjectProvide and inject are not new features of Vue3, they already existed in Vue2. The documentation mentions that provide and inject bindings are not reactive. However, if you pass in a listenable object, the properties of that object will still be listenable. Vue3 has added responsive APIs ref and reactive based on Computed and watch, which can make the application of provide and inject more convenient. Combined with the idea of Composition API, can a simplified version of state management be implemented? Extracting shared state// src/context/calculator.ts import { ref, inject, provide, readonly } from 'vue'; type Calculator = { count: number; increase: () => void; updateCount: (num: number) => void; }; //provide key, unique token const CalculatorSymbol = Symbol(); //provider export const calculatorProvide = () => { //Number const count = ref<number>(1); //Increase method const increase = () => { count.value++; }; //Update method const updateCount = (num: number) => { count.value = num; }; //The shared state object provided const depends = { count: readonly(count), // read-only status, modify by method increase, updateCount }; //Use provide api to implement state object provide(CalculatorSymbol, depends); //Return the status object so that the peer can call return depends; }; //Injection method export const calculatorInject = () => { //Use the inject api to inject state const calculatorContext = inject<Calculator>(CalculatorSymbol); //Error checking for injection without sharing if (!calculatorContext) { throw new Error('Inject must be used affer Provide'); } //Return the injected contribution status return calculatorContext; }; Provide dataCompared with Vuex's global sharing, Provide/Inject can achieve global or local sharing. Global sharing, you can inject global state in main.ts: // src/main.ts import { createApp, h } from 'vue'; import App from '@/App.vue'; import { calculatorProvide } from '@/context/calculator'; // Create a Vue instance const app = createApp({ setup() { calculatorProvide(); return () => h(App); } }); // Mount the instance app.mount('#app'); If you only want to share locally, you can inject the state into the parent component // src/views/parent.vue import { defineComponent } from "vue"; import { calculatorProvide } from '@/context/calculator'; export default defineComponent({ name: "parent", setup() { //Shared data calculatorProvide(); } }); Injecting dataSubcomponents can inject, use or modify state through state // src/views/child.vue import { defineComponent } from "vue"; import { calculatorInject } from '@/context/calculator'; export default defineComponent({ name: "child", setup() { //Inject data const { count, increase, updateCount } = calculatorInject(); } }); summaryIn fact, you can think of dependency injection (Provide/Inject) as "long range props", except:
Vue3 makes dependency injection more flexible and convenient, thereby simulating a small state management. In my personal test, the support for TypeScript is relatively complete. reactiveSo without using Provide/Inject, is there any other way to achieve state management? Directly on the code. Extracting shared state// src/context/calculator.ts type Calculator = { count: number; increase: () => void; updateCount: (num: number) => void; }; //Shared state const calculatorStore = reactive<Calculator>({ count: 1, increase: () => { calculatorStore.count++; }, updateCount: (num: number) => { calculatorStore.count = num; } }); export { calculatorStore }; Using Shared StateThe method of using state is very simple. You only need to import the state. The components that need to use the state need to be imported. // src/views/any.vue import { defineComponent } from "vue"; import { calculatorStore } from '@/context/calculator'; export default defineComponent({ name: "any", setup() { console.log(calculatorStore.count); } }); summaryIn fact, this solution uses the responsiveness of reactive and the principle of importing the same instance. Compared with dependency injection, it is simpler and more crude, and can also correctly support TypeScript verification. However, dependency injection can share different data in different root nodes, while this reactive solution always shares one instance, which is not applicable in some business scenarios. ConclusionFirst of all, Vuex is still a more mature and comprehensive solution. It is just for some simple state management, you can try to change your thinking to solve it; of course, the above solutions may still have many incomplete considerations, and you are welcome to give me some advice~ The above is the detailed content of the detailed explanation of the use of Vue3 state management. For more information on the use of Vue3 state management, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Detailed analysis of when tomcat writes back the response datagram
>>: Detailed explanation of MySQL database Event scheduled execution tasks
To summarize the form submission method: 1. Use t...
Organize the MySQL 5.5 installation and configura...
This article example shares the specific code of ...
Table of contents 1. Preparation 2. MySQL encrypt...
Table of contents 1. Filter unique values 2. Shor...
mysql-8.0.19-winx64 downloaded from the official ...
This article uses examples to describe MySQL'...
The latest tutorial for installing MySQL 8.0.25 o...
By default, processes in the container run with r...
When nginx configures proxy_pass, the difference ...
Table of contents 1. What is SVN 2. Svn server an...
Table of contents Preface Mixin Mixin Note (dupli...
Table of contents 1. What is nginx? 2. What can n...
Preface NAT forwarding: Simply put, NAT is the us...
Table of contents 2. Purpose 2.1 Adding propertie...