Laravel X Vuejs X Vuex加载概念

时间:2019-03-19 05:54:11

标签: vue.js vuex

任何人都可以告诉我我的代码有什么问题吗

//Start Loading

load_post(id) {
    this.$store.dispatch('start_sub_loader');

    this.$router.push({ path: '/post/'+ this.hashid(id)});
},

//End Loading
mounted() {
    axios.get('/blah/blah/blah/' + this.$route.params.id).then(response => {
        console.log(response.data);

        this.$store.commit("is_sub_loading_end");
        // or
        this.$store.dispatch('end_sub_loader');
    });
}

问题是,当我单击标题时,它开始加载并且更改了url,但它不会加载该组件,我在其中放置了一个日志进行检查,但没有返回任何内容

0 个答案:

没有答案