Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Installation and use of vuex

2025-01-30 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

This article introduces the relevant knowledge of "the installation and use of vuex". Many people will encounter such a dilemma in the operation of actual cases, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

Install vuexnpm install vuex-SHelloworld

Create a new directory store under the src directory of the project, and create a new index.js file under this directory, which we use to create a vuex instance, then introduce vue and vuex into the file, create a Vuex.Store instance and save it to the variable store, and finally use export default to export store:

Import Vue from 'vue'; / / first introduce vueimport Vuex from' vuex' / / introduce vuexVue.use (Vuex) export default new Vuex.Store ({state: {/ / state similar to data / / write data}, getters: {/ / getters similar to computed / / write method}, mutations: {/ / mutations similar to methods / / write method to make changes to the data (synchronous operation)} Actions: {/ / actions is similar to methods / / write method to make changes to the data (asynchronous operation)})

Introduce this file into the main.js file, add import store from'. / store';, to the file, and then introduce the store object globally in the vue instance.

Import Vue from 'vue'import App from'. / App.vue'import router from'. / router'import store from'. / store'Vue.config.productionTip = falsenew Vue ({router, store, render: h = > h (App)}). This is the end of the $mount ('# app') "installation and use of vuex. Thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report