Created
February 6, 2023 13:40
-
-
Save Gkiokan/f6c3c05fa6b0224ef86bf7df0c2be457 to your computer and use it in GitHub Desktop.
Vue Paginate Mixing Component
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default { | |
data(){ return { | |
currentPage: 1, | |
perPage: 50, | |
data: null, | |
}}, | |
computed: { | |
items(){ | |
return this.data ? this.data.data : [] | |
} | |
}, | |
watch: { | |
currentPage(i){ | |
this.load(i) | |
}, | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment