我是靠谱客的博主 怕黑萝莉,最近开发中收集的这篇文章主要介绍vue3根模块中vuex的使用,vuex,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

vue3

import { createStore } from 'vuex'

// vue2.0 创建仓库 new Vuex.Store({ })
// vue3.0 创建仓库 createStore({ })
export default createStore({
  state: {
    // 数据
    username: 'zs',
    age: 56
  },
  getters: {
    // vuex的计算属性
    newName (state) {
      return state.username + '!!!'
    },
  },
  mutations: {
    // 更改数据函数
    updateName (state) {
      state.username = 'ls'
    },
    updateAge (state, playLoad) {
      console.log("playLoad", playLoad)
      state.age += playLoad
    }
  },
  actions: {
    // Action 类似于 mutation,不同在于:
    // Action 提交的是 mutation,而不是直接变更状态。
    // Action 可以包含任意异步操作。
    // 请求数据函数
    updateName (ctx) {
      console.log('触发了')
      // 发请求
      setTimeout(() => {
        ctx.commit('updateAge', 46)
      }, 1000)
    }
  },
  modules: {
    // 分模块
  }
})

App.vue

<template>
  <!-- vue2.0需要根元素,vue3.0可以是代码片段 fragment -->
  <div>
    App
    <!-- 1、使用根模块state的数据 -->
    <h1>{{ $store.state.username }}</h1>
    <!-- 2、使用根模块getters的数据 -->
    <h1>{{ $store.getters.newName }}</h1>
    <h1>{{ $store.getters["newName"] }}</h1>
    <button @click="mutationsFn">按钮</button>
    <h1>{{ $store.state.age }}</h1>
    <button @click="actionsFn">改变年龄</button>
  </div>
  <p>p</p>
</template>
<script>
import { useStore } from "vuex";
export default {
  name: "App",
  setup () {
    // userStore可以拿到vuex仓库实例
    const store = useStore();
    // 1、使用根模块state的数据
    console.log(store);
    console.log(store.state.username);
    // 2、使用根模块getters的数据
    console.log(store.getters.newName);
    // 3、提交根模块mutations方法
    const mutationsFn = () => {
      store.commit("updateName");
    };
    // 4、调用根模块的actions函数
    const actionsFn = () => {
      store.dispatch('updateName')
    }
    return {
      mutationsFn,
      actionsFn
    }
  },
};
</script>
<style lang="less">
</style>

在这里插入图片描述
在这里插入图片描述

最后

以上就是怕黑萝莉为你收集整理的vue3根模块中vuex的使用,vuex的全部内容,希望文章能够帮你解决vue3根模块中vuex的使用,vuex所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(53)

评论列表共有 0 条评论

立即
投稿
返回
顶部