Skip to content

Instantly share code, notes, and snippets.

@dineshdeveloper1
Created January 21, 2019 11:37
Show Gist options
  • Save dineshdeveloper1/4086ebb55bb78ce9044a7e2e3da4d88e to your computer and use it in GitHub Desktop.
Save dineshdeveloper1/4086ebb55bb78ce9044a7e2e3da4d88e to your computer and use it in GitHub Desktop.
Vuetify Paginations
<template>
<div class="text-xs-center">
<v-pagination
v-model="page"
:length="6"
></v-pagination>
</div>
</template>
<script>
export default {
data () {
return {
page: 1
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment