Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Why did `FETCH_LIST_DATA` action fires twice on page switching? #365

Open
zckevin opened this issue Jun 15, 2019 · 0 comments
Open

Why did `FETCH_LIST_DATA` action fires twice on page switching? #365

zckevin opened this issue Jun 15, 2019 · 0 comments

Comments

@zckevin
Copy link

@zckevin zckevin commented Jun 15, 2019

In file src/entry-client.js, we have beforeRouteUpdate mixin:

Vue.mixin({
  beforeRouteUpdate (to, from, next) {
    const { asyncData } = this.$options
    if (asyncData) {
      asyncData({
        store: this.$store,
        route: to
      }).then(next).catch(next)
    } else {
      next()
    }
  }
})

And in src/views/ItemList.vue, we have been watching for vue-router's page:

  watch: {
    page (to, from) {
      this.loadItems(to, from)
    }
  },

And I thought these two code fragments are doing the same thing, is it just for demonstrating or other purposes? Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Linked pull requests

Successfully merging a pull request may close this issue.

None yet
1 participant
You can’t perform that action at this time.