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
buptsb opened this issue Jun 15, 2019 · 0 comments
Open

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

buptsb opened this issue Jun 15, 2019 · 0 comments

Comments

@buptsb
Copy link

buptsb 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
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant