欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Vue学习之Vuex的使用详解

程序员文章站 2022-06-09 22:52:32
目录简介优缺点优点缺点使用场景示例安装vuex并引入1.安装vuex2.编写vuex的store3.main.js引入counterstore.js业务代码测试简介说明本文介绍vue的插件:vuex。...

简介

说明

本文介绍vue的插件:vuex。包括:优缺点、使用场景、示例。

官网

官网文档

api vuex-store

优缺点

优点

1.响应式

属于 vue 生态一环,,能够触发响应式的渲染页面更新。 (localstorage 就不会)

2.可预测的方式改变数据

避免数据污染

3.无需转换数据

js 原生的数据对象写法(不需要做转换)。(localstorage 需要做转换)

缺点

1.复杂

适合大应用,不适合小型应用

2.不能持久化(刷新页面后vuex中的state会变为初始状态)

解决方案

结合localstorage

vuex-persistedstate插件

使用场景

当我们多个页面需要共享数据时就可以使用vuex。

实际开发中我们一般在下面这种情况使用它:

当前登录用户的信息

购物车的信息

收藏的信息

用户的地理位置

示例

本处用计数器来测试:一个组件修改计数器的值,其余两个不相关组件可以监测到时计数器值的改变。

做法:一个组件(componenta)将数据共享给另外两个不相关组件(componentb和componentc),外部用parent.vue放置这三个组件。

安装vuex并引入

 1.安装vuex

在工程目录下执行:npm install vuex

2.编写vuex的store

创建目录store,在其下边创建counterstore.js,内容如下: 

import vue from 'vue';
import vuex from 'vuex';
 
vue.use(vuex);
const couterstore = new vuex.store(
  {
    state: {
      count1: 0,
      count2: 0,
    },
    mutations: {
      increment1(state) {
        state.count1++;
      },
      decrement1(state) {
        state.count1--;
      },
      increment2: state => state.count2++,
      decrement2: state => state.count2--,
    }
  }
);
 
export default couterstore;

3.main.js引入counterstore.js

// 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 couterstore from './store/counterstore'
 
vue.config.productiontip = false
 
/* eslint-disable no-new */
new vue({
  el: '#app',
  router,
  store: couterstore,
  components: { app },
  template: '<app/>'
})

按照js语法,key与value重名时可以简写:(很多教程这么写)

// 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/counterstore'
 
vue.config.productiontip = false
 
/* eslint-disable no-new */
new vue({
  el: '#app',
  router,
  store,
  components: { app },
  template: '<app/>'
})

业务代码

代码

componenta.vue

<template>
  <div class="container">
    <h3>componenta</h3>
    <button @click="increment1">增加:第1个计数器</button>
    <button @click="decrement1">减少:第1个计数器</button><br><br>
    <button @click="increment2">增加:第2个计数器</button>
    <button @click="decrement2">减少:第2个计数器</button>
  </div>
</template>
 
<script>
export default {
  data() {
    return {
      count1: 0,
      count2: 0,
    }
  },
  methods:{
    increment1() {
      this.$store.commit('increment1')
    },
    decrement1() {
      this.$store.commit('decrement1')
    },
    increment2() {
      this.$store.commit('increment2')
    },
    decrement2() {
      this.$store.commit('decrement2')
    }
  }
}
</script>
 
<style scoped>
.container {
  margin: 20px;
  border: 2px solid blue;
  padding: 20px;
}
</style>

componentb.vue

<template>
  <div class="container">
    <h3>componentb</h3>
    计数器的值:{{msg}}
    <!--也可以这么写:-->
    <!--计数器的值:{{this.$store.state.count1}}-->
  </div>
</template>
 
<script>
export default {
  computed:{
    msg() {
      return this.$store.state.count1;
    }
  }
}
</script>
 
<style scoped>
.container {
  margin: 20px;
  border: 2px solid blue;
  padding: 20px;
}
</style>

componentc.vue

<template>
  <div class="container">
    <h3>componentc</h3>
    计数器的值:{{msg}}
    <!--也可以这么写:-->
    <!--计数器的值:{{this.$store.state.count2}}-->
  </div>
</template>
 
<script>
export default {
  computed:{
    msg() {
      return this.$store.state.count2;
    }
  }
}
</script>
 
<style scoped>
.container {
  margin: 20px;
  border: 2px solid blue;
  padding: 20px;
}
</style>

parent.vue

<template>
  <div class="outer">
    <h3>父组件</h3>
    <component-a></component-a>
    <component-b></component-b>
    <component-c></component-c>
 
  </div>
</template>
 
<script>
import componenta from "./componenta";
import componentb from "./componentb";
import componentc from "./componentc";
 
export default {
  name: 'parent',
  components: {componenta, componentb, componentc},
  data() {
    return {
      name: 'tony',
      age: 20,
      phonenumber: '1234567890'
    }
  }
}
</script>
 
<style scoped>
.outer {
  margin: 20px;
  border: 2px solid red;
  padding: 20px;
}
</style>

路由

import vue from 'vue'
import router from 'vue-router'
import parent from "../components/parent";
 
vue.use(router)
 
export default new router({
  routes: [
    {
      path: '/parent',
      name: 'parent',
      component: parent,
    }
  ],
})

测试

访问: http://localhost:8080/#/parent

Vue学习之Vuex的使用详解

到此这篇关于vue学习之vuex的使用详解的文章就介绍到这了,更多相关vuex使用内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

相关标签: Vue Vuex