Hi people
I have the following problem:
In my home page the system list posts in a infinity scroll, the user can scroll and scroll and in a moment he can enter to see the post,
He enter to the item using this code:
this.$router.push(post.url)
The problem is when the user click in the “go back button” of the browser. In the original version the system load the content of the infinity scroll and the user lost his position.
I modified it, and changed the code:
<keep-alive>
<router-view :key="this.$route.fullPath />
</keep-alive>
This works well with the go back, but it never load more contents or reset the home, or never load the item page again if this was changed by other user
“keep alive” seems to generate static content, I don’t need static content for all the pages.
How can resolve the “go back” so the user can continues chcking his list
Sorry for my english and thanks for your time
Regards Ernesto