Guest User

Untitled

a guest
Jan 21st, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <template>
  2. <div class="text-xs-center">
  3. <v-pagination
  4. v-model="page"
  5. :length="6"
  6. ></v-pagination>
  7. </div>
  8. </template>
  9.  
  10. <script>
  11. export default {
  12. data () {
  13. return {
  14. page: 1
  15. }
  16. }
  17. }
  18. </script>
Add Comment
Please, Sign In to add comment