Fixed #3802 - Improve folder structure for nuxt configurations

This commit is contained in:
mertsincan 2023-03-26 06:22:57 +01:00
parent 851950270b
commit f5fe822afb
563 changed files with 1703 additions and 1095 deletions

View file

@ -0,0 +1,51 @@
<template>
<span class="p-paginator-current">{{ text }}</span>
</template>
<script>
export default {
name: 'CurrentPageReport',
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>