91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Vue的Vuex怎么使用

發布時間:2022-01-24 09:34:28 來源:億速云 閱讀:159 作者:iii 欄目:開發技術

這篇文章主要講解了“Vue的Vuex怎么使用”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Vue的Vuex怎么使用”吧!

優缺點

優點

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">
    <h4>ComponentA</h4>
    <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">
    <h4>ComponentB</h4>
    計數器的值:{{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">
    <h4>ComponentC</h4>
    計數器的值:{{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">
    <h4>父組件</h4>
    <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怎么使用”的內容了,經過本文的學習后,相信大家對Vue的Vuex怎么使用這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

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

AI

珠海市| 游戏| 洛隆县| 南安市| 茂名市| 佛冈县| 南乐县| 白山市| 凤凰县| 广河县| 苏尼特右旗| 吴旗县| 凌源市| 宁南县| 克山县| 广宁县| 临桂县| 册亨县| 梁河县| 甘德县| 石柱| 叶城县| 津南区| 黄骅市| 长岛县| 皋兰县| 民丰县| 巫溪县| 名山县| 桓台县| 永嘉县| 鹿邑县| 河曲县| 彭州市| 长沙县| 介休市| 襄汾县| 商丘市| 大化| 同江市| 墨竹工卡县|