Nuxt整合 vuex

在nuxt中,只编写vuex的核心内容。

  • 编写内容
//state区域,相当于定义变量
export const state = () => ({
  
})

//mutations区域,用于修改数据
export const mutations = {
  方法名 (state,值) {
    
  }
}
  • state区域注意实现

    //state 区域,相当于定义变量
    export const state = ()=> {
      return {
    
      }
    }
    //省略写法
    export const state = () => ({
    
    })
    
实例 【掌握】
    1. 创建 ~/store/index.js ,编写如下内容
    //state 区域,相当于定义变量
    export const state = () => ({
      pageInfo: ''
    })
    
    //mutations区域,用于修改数据
    export const mutations = {
      setData( state , value) {
        state.pageInfo = value
      }
    }
    
    
  • 使用

<script>
import {mapState,mapMutation} from 'vuex'
export default {
    //state区域,与需要计算属性结合
    computed: {
        ...mapState([变量,变量2,....])
    },
    //mutations区域,进行修改数据,需要与methods结合
    methods: {
        ...mapMutation([方法名,方法名2,....])
    }, 
}
</script>
    1. 完成fetch操作
<template>
  <div>
      {{ this.$store.state.pageInfo }}
  </div>
</template>

<script>
export default {
  async fetch( {$axios, store } ) {
    //发送ajax
    let { data } = await $axios.get('/userservice/user/list')
    console.info( data )
    //将查询结果保存vuex
    store.commit('setData', data.data )
  }
}
</script>

<style>

</style>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值