1.0.2 • Published 4 years ago

tth-v-pagination v1.0.2

Weekly downloads
2
License
ISC
Repository
-
Last release
4 years ago

VuePagination is a vue component that provides core pagination functionality

Installation

	npm install --save-dev tth-v-pagination

Then you can use it in your component...

	<template>
		<div>
			...

			<v-pagination :total="total" @paginate="onPaginate"/>
		</div>
	</template>
	<script>
		import VuePagination from 'tth-v-pagination';

		export default {
			...
			components: {
				'v-pagination': VuePagination,
			},
			...
			methods: {
				...
				onPaginate: function(query){

				}
			}
		}
	</script>
1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago