mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 01:12:37 +00:00
Styles imported. Components added
This commit is contained in:
parent
3cb3910561
commit
8264983db4
452 changed files with 55902 additions and 0 deletions
52
components/paginator/CurrentPageReport.vue
Executable file
52
components/paginator/CurrentPageReport.vue
Executable file
|
@ -0,0 +1,52 @@
|
|||
<template>
|
||||
<span class="p-paginator-current">{{text}}</span>
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
name: 'CurrentPageReport',
|
||||
inheritAttrs: false,
|
||||
props: {
|
||||
pageCount: {
|
||||
type: Number,
|
||||
default: 0
|
||||
},
|
||||
currentPage: {
|
||||
type: Number,
|
||||
default: 0
|
||||
},
|
||||
page: {
|
||||
type: Number,
|
||||
default: 0
|
||||
},
|
||||
first: {
|
||||
type: Number,
|
||||
default: 0
|
||||
},
|
||||
rows: {
|
||||
type: Number,
|
||||
default: 0
|
||||
},
|
||||
totalRecords: {
|
||||
type: Number,
|
||||
default: 0
|
||||
},
|
||||
template: {
|
||||
type: String,
|
||||
default: '({currentPage} of {totalPages})'
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
text() {
|
||||
let text = this.template
|
||||
.replace("{currentPage}", this.currentPage)
|
||||
.replace("{totalPages}", this.pageCount)
|
||||
.replace("{first}", this.pageCount > 0 ? this.first + 1 : 0)
|
||||
.replace("{last}", Math.min(this.first + this.rows, this.totalRecords))
|
||||
.replace("{rows}", this.rows)
|
||||
.replace("{totalRecords}", this.totalRecords);
|
||||
|
||||
return text;
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue