Guest User

Untitled

a guest
Jul 22nd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <template>
  2. <div>
  3. <button class="paginator__previous-btn" @click="previousPage"></button>
  4. <button class="paginator__next-btn" @click="nextPage"></button>
  5. </div>
  6. </template>
  7.  
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. currentPage: 1
  13. }
  14. },
  15. methods: {
  16. previousPage() {
  17. this.currentPage -= 1
  18. },
  19. nextPage() {
  20. this.currentPage += 1
  21. }
  22. }
  23. }
  24. </script>
Add Comment
Please, Sign In to add comment