primevue-mirror/components/paginator/PageLinks.vue

31 lines
785 B
Vue
Raw Normal View History

2022-09-06 12:03:37 +00:00
<template>
<span class="p-paginator-pages">
<button v-for="pageLink of value" :key="pageLink" :class="['p-paginator-page p-paginator-element p-link', {'p-highlight': ((pageLink - 1) === page)}]" type="button"
@click="onPageLinkClick($event, pageLink)" v-ripple>{{pageLink}}</button>
</span>
</template>
<script>
import Ripple from 'primevue/ripple';
export default {
name: 'PageLinks',
inheritAttrs: false,
emits: ['click'],
props: {
value: Array,
page: Number
},
methods: {
onPageLinkClick(event, pageLink) {
this.$emit('click', {
originalEvent: event,
value: pageLink
});
}
},
directives: {
'ripple': Ripple
}
}
</script>