41 lines
1.0 KiB
Vue
Executable File
41 lines
1.0 KiB
Vue
Executable File
<template>
|
|
<RPPDropdown :modelValue="rows" :options="rowsOptions" optionLabel="label" optionValue="value" @update:modelValue="onChange($event)" class="p-paginator-rpp-options" :disabled="disabled" :pt="ptm('RPPDropdown')"></RPPDropdown>
|
|
</template>
|
|
|
|
<script>
|
|
import BaseComponent from 'primevue/basecomponent';
|
|
import Dropdown from 'primevue/dropdown';
|
|
|
|
export default {
|
|
name: 'RowsPerPageDropdown',
|
|
extends: BaseComponent,
|
|
emits: ['rows-change'],
|
|
props: {
|
|
options: Array,
|
|
rows: Number,
|
|
disabled: Boolean
|
|
},
|
|
methods: {
|
|
onChange(value) {
|
|
this.$emit('rows-change', value);
|
|
}
|
|
},
|
|
computed: {
|
|
rowsOptions() {
|
|
let opts = [];
|
|
|
|
if (this.options) {
|
|
for (let i = 0; i < this.options.length; i++) {
|
|
opts.push({ label: String(this.options[i]), value: this.options[i] });
|
|
}
|
|
}
|
|
|
|
return opts;
|
|
}
|
|
},
|
|
components: {
|
|
RPPDropdown: Dropdown
|
|
}
|
|
};
|
|
</script>
|