中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

淺談vuex的基本用法和mapaction傳值問題

發布時間:2020-10-16 07:01:54 來源:腳本之家 閱讀:286 作者:請不要讓我脫發 欄目:web開發

vuex的理論知識就不多提了,官網上已經有明確的講解。

用一個簡單的例子來描述一下基本的用法:

第一步:npm install vuex –save-dev

第二步:在目錄中創建store目錄配置管理狀態

//store/index.js
/**
 * Created by zhaohuan on 2017/7/13.
 */
import Vue from 'vue'
import Vuex from 'vuex';


Vue.use(Vuex);

const store = new Vuex.Store({
 state: {
  msg: '原始數據'
 },
 actions: {
  fun: function ({commit},date) {
   commit('saveAdminInfo', {list: date});
  },
 },
 mutations: {
  saveAdminInfo(state, adminInfo){
   state.msg = adminInfo.list;
  }
 }
});


export default store;

第三步:在main.js中引入store

new Vue({

 el: '#app',
 router,
 store,
 template: '<App/>',
 components: { App }
});

第四部:編寫路由頁面

//test1.vue
<template>
 <div>
 msg:{{msg}}

  <input type="text" v-model="checkedNames" >
  <button @click="fun">提交</button>
 </div>


</template>

<script>
 import {mapState,mapActions} from 'vuex';
 export default{
  data(){
    return{
     checkedNames:''
    }
  } ,
  computed: {...mapState(['msg'])},
  methods: {
//    ...mapActions(['fun']);
//如果需要向actions里面傳值就手動調用
fun(){
     this.$store.dispatch('fun',this.checkedNames);
   }
 //...mapActions(['fun'])==   this.$store.dispatch('fun');
  }
 }
</script>

test2.vue

<template>
 <div>
  msg:{{msg}}
 </div>
</template>

<script>
 import {mapState} from 'vuex';
 export default{
  computed: {...mapState(['msg'])}, //對應getters.技術中的msg
//  methods: {...mapActions(['fun'])}
 }
</script>

修改之前:

test1

淺談vuex的基本用法和mapaction傳值問題

test2

淺談vuex的基本用法和mapaction傳值問題

以上這篇淺談vuex的基本用法和mapaction傳值問題就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

新蔡县| 安化县| 益阳市| 柳河县| 甘南县| 广灵县| 枣强县| 宝清县| 天津市| 谢通门县| 吴桥县| 舒城县| 黄骅市| 丰顺县| 开封县| 绵竹市| 江华| 都昌县| 修水县| 简阳市| 比如县| 黄冈市| 濮阳市| 马公市| 房山区| 尼勒克县| 玛纳斯县| 客服| 清河县| 格尔木市| 盐津县| 灵宝市| 木兰县| 维西| 郴州市| 林口县| 江口县| 义乌市| 右玉县| 米林县| 高平市|