vue.js安裝vuex的方法:先進入專案路徑後,在專案終端輸入相關程式碼;然後在專案的package json檔案中顯示vuex外掛程式;接著在專案src目錄中新建store js;最後在【main.js】中應用vuex即可。
本教學操作環境:windows7系統、Vue2.9.6版,此方法適用於所有品牌電腦。
vue.js安裝vuex的方法:
1、安裝:
進入專案路徑後,在專案終端輸入:npm install vuex --save
或 cnpm install vuex --save
2、安裝完成後,會在專案的package.json檔案中顯示vuex插件,如下:
"dependencies": { "vue": "^2.5.2", "vue-router": "^3.0.1", "vuex": "^3.3.0" },
3、再專案src目錄中新建store.js,檔案內容如下:
import Vue from 'vue' import Vuex from 'vuex' Vue.use(Vuex); export default new Vuex.Store({ //所有的数据都放在state中 state:{}, //操作数据,唯一的通道是mutations mutations:{}, //actions,可以来做异步操作,然后提交给mutations,而后再对state(数据)进行操作 actions:{} })
4、在main.js中套用vuex:
匯入store,然後再new Vue中使用,程式碼如下:
// The Vue build version to load with the `import` command // (runtime-only or standalone) has been set in webpack.base.conf with an alias. import Vue from 'vue' import App from './App' import router from './router' import store from './store' //导入store Vue.config.productionTip = false /* eslint-disable no-new */ new Vue({ el: '#app', router, store, //在new Vue中使用 components: { App }, template: '<App/>' })
#相關免費學習推薦:javascript(影片)
以上是vue.js如何安裝vuex的詳細內容。更多資訊請關注PHP中文網其他相關文章!