任何人都可以告诉我我的代码有什么问题吗
//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,但它不会加载该组件,我在其中放置了一个日志进行检查,但没有返回任何内容