📜  await vuex dispatch true - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:52.084000             🧑  作者: Mango

代码示例1
mounted() {
    this.loading = true;

    this.$store.dispatch('module/function', 'value').then((response) => {
        this.loading = false;
    });
},