您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關使用Vuex的案例分析的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
什么是Vuex?
vuex是專門為vue.js應用程序開發的一種狀態管理模式,當多個視圖依賴于同一個狀態或是多個視圖均可更改某個狀態時,將共享狀態提取出來,全局管理。
引入Vuex(前提是已經用Vue腳手架工具構建好項目)
1、利用npm包管理工具,進行安裝 vuex。在控制命令行中輸入下邊的命令就可以了。
npm install vuex --save
要注意的是這里一定要加上 –save,因為你這個包我們在生產環境中是要使用的。
2、新建一個store文件夾(這個不是必須的),并在文件夾下新建store.js文件,文件中引入我們的vue和vuex。
import Vue from 'vue'; import Vuex from 'vuex';
3、使用我們vuex,引入之后用Vue.use進行引用。
Vue.use(Vuex);
通過這三步的操作,vuex就算引用成功了,接下來我們就可以盡情的玩耍了。
4、在main.js 中引入新建的vuex文件
import storeConfig from './vuex/store'
5、再然后 , 在實例化 Vue對象時加入 store 對象 :
new Vue({ el: '#app', router, store,//使用store template: '<App/>', components: { App } })
下面是一個計數器的例子
在src目錄下創建一個store文件夾。
src/store.js
import Vue from 'vue' import Vuex from 'vuex' Vue.use(Vuex) const store = new Vuex.Store({ state: { count: 0, show: '' }, getters: { counts: (state) => { return state.count } }, mutations: { increment: (state) => { state.count++ }, decrement: (state) => { state.count-- }, changTxt: (state, v) => { state.show = v } } }) export default store
state就是我們的需要的狀態,狀態的改變只能通過提交mutations,例如:
handleIncrement () { this.$store.commit('increment') }
帶有載荷的提交方式:
changObj () { this.$store.commit('changTxt', this.obj) }
當然了,載荷也可以是一個對象,這樣可以提交多個參數。
changObj () { this.$store.commit('changTxt', { key:'' }) }
在main.js中引入store.js
import store from './store/store' export default new Vue({ el: '#app', router, store, components: { App }, template: '<App/>' })
在組件中使用
在組建可以通過$store.state.count
獲得狀態
更改狀態只能以提交mutation的方式。
<template> <div class="store"> <p> {{$store.state.count}} </p> <el-button @click="handleIncrement"><strong>+</strong></el-button> <el-button @click="handleDecrement"><strong>-</strong></el-button> <hr> <h4>{{$store.state.show}}</h4> <el-input placeholder="請輸入內容" v-model="obj" @change="changObj" clearable> </el-input> </div> </template> <script> export default { data () { return { obj: '' } }, methods: { handleIncrement () { this.$store.commit('increment') }, handleDecrement () { this.$store.commit('decrement') }, changObj () { this.$store.commit('changTxt', this.obj) } } } </script>
到這里這個demo就結束了,
感覺整個個過程就是一個傳輸數據的過程,有點類似全局變量,但是vuex是響應式的。
這里當然并沒有完全發揮出全部的vuex。
感謝各位的閱讀!關于“使用Vuex的案例分析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。