溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

怎么在VUE中使用vuex解決模塊間傳值問題

發(fā)布時(shí)間:2021-03-17 16:10:20 來源:億速云 閱讀:217 作者:Leah 欄目:web開發(fā)

本篇文章為大家展示了怎么在VUE中使用vuex解決模塊間傳值問題,內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。

步驟1:安裝和創(chuàng)建

安裝 vuex:npm i vuex --save

創(chuàng)建 store.js,把基本格式寫好:

 import Vue from 'vue'
 import Vuex from 'vuex'
 // 首先聲明一個(gè)狀態(tài) state
 const state = {
 msg: ''
 }
 // 然后給 actions 注冊(cè)一個(gè)事件處理函數(shù),當(dāng)這個(gè)函數(shù)被觸發(fā)時(shí),將狀態(tài)提交到 mutaions中處理
 const actions = {
 saveName({commit}, msg) {
  commit('saveMsg', msg) // 提交到mutations中處理 
 }
 }
 // 更新狀態(tài)
 const mutations = {
  saveMsg(state, msg) {
  state.msg = msg;
 }
 }
 // 獲取狀態(tài)信息
 const getter = {
 showState(state) {
  console.log(state.msg)
 }
 }


 // 下面這個(gè)相當(dāng)關(guān)鍵了,所有模塊,記住是所有,注冊(cè)才能使用
 export default new Vuex.Store{
 state,
 getter,
 mutations,
 actions
 }

步驟2:在子組件中使用(保存輸入)

具體到我這里,是在c-form中使用它:

<template>
 <div>
  <input type="text" @blur=saveName(username) v-model="username" placeholder="Your name">
 </div>
</template>

<script type="text/javascript">
 // 引入mapActions,很重要
 import { mapActions } from 'vuex'
 export default {
 data() {
  return {
  username:'',
  password: ''
  }
 },
 methods: {
  ...mapActions({
  // 在input 的blur 事件中觸發(fā)回調(diào),并將輸入值作為參數(shù)返回到store中
  saveName: 'saveName' 
  })
 }
 }
</script>

步驟3:獲取在步驟2 中的輸入值(獲取state)

<template>
 <div id="login">
 <c-header></c-header>
 <c-form></c-form>
 <p class="content-block"><a href="javascript:;" rel="external nofollow" rel="external nofollow" @click=showState class="button button-fill button-success">登錄</a></p>
 </div>
</template>

<script>
// 引入mapGtters,很重要
import { mapGetters } from 'vuex'
 export default {
 methods: {
  ...mapGetters([
  // 在store.js 中注冊(cè)的getters
  'showState'
  ])
 },
 components: {
  "c-form": require('../components/form.vue'),
  "c-header": require('../components/header.vue')
 }
 }
</script>

上述內(nèi)容就是怎么在VUE中使用vuex解決模塊間傳值問題,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI