State and reactivity in Vue

栏目: IT技术 · 发布时间: 5年前

内容简介:In one of myprevious articles, I mentioned how it is possible to design a simple state manager in Vue by usingIn Vue 2, a reactive store might look like this:We can provide the components with a basic

In one of myprevious articles, I mentioned how it is possible to design a simple state manager in Vue by using observable . The Observable API has been available in Vue since version 2 however, with version 3 the reactive object is no longer directly modified but proxied into. Let's have a look how both work in detail:

In Vue 2, a reactive store might look like this:

// store.js
export const store = Vue.observable({ orders: 0 });

We can provide the components with a basic dispatch function that will collect an action with a payload and that will take care of updating the state. Also, we might want to provide a getters helper so that the store values can be reached as computed properties:

// store.js
export function dispatch(type, payload) {
    switch(type) {
        case 'increment-orders':
            Object.assign(store, { orders: store.orders + payload });
            break;
        default:
            //
    }
}

export function getters(orders) {
    return {
        orders: () => store.orders
    }
}

In our Vue component, we register the getters and use dispatch to notify the store about a user event:

<template>
    I have {{ orders }} orders on my account. 
    <a @click="increment()">add order</a>
</template>

<script>
import { dispatch } from 'store';

return {
    computed: { ...getters() },
    methods: { 
        increment() {
            dispatch('increment-orders', 1); 
        } 
    }
};
</script>

Vue 3 and the Composition API

With the introduction of the Composition API , operating with reactive properties is much simpler. The above example could be easily refactored to follow the new constructs. Here, reactive replaced the functionaltiy that observable was providing:

// store.js
import { reactive } from 'vue';

export const store = reactive({ orders: 0 });

// Component.vue
import { store, dispatch } from './store';

export default {
    setup() {
        return { store };
    },
    methods:{
        increment() {
            dispatch('increment-orders', 1);
        }
    }
}

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

测试驱动开发

测试驱动开发

Kent Beck / 孙平平、张小龙 / 中国电力出版社 / 2004-4-1 / 28.00元

《测试驱动开发》(中文版)设想把编程看成是转动曲柄从井里提一桶水上来的过程。如果水桶比较小,那么仅需一个能自由转动的曲柄就可以了。如果水桶比较大而且装满水,那么还没等水桶全部被提上来你就会很累了。你需要一个防倒转的装置,以保证每转一次可以休息一会儿。水桶越重,防倒转的棘齿相距越近。测试驱动开发中的测试程序就是防倒转装置上的棘齿。一旦我们的某个测试程序能工作了,你就知道,它从现在开始并且以后永远都可......一起来看看 《测试驱动开发》 这本书的介绍吧!

RGB转16进制工具
RGB转16进制工具

RGB HEX 互转工具

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具

URL 编码/解码
URL 编码/解码

URL 编码/解码