Fixed #159 - rowsPerPageOptions dropdown is not coming in Datatable
parent
246edd2f30
commit
e3ea89a475
|
@ -1,8 +1,11 @@
|
|||
<template>
|
||||
<Dropdown :value="rows" :options="rowsOptions" optionLabel="label" optionValue="value"
|
||||
@input="onChange($event)"></Dropdown>
|
||||
<RPPDropdown :value="rows" :options="rowsOptions" optionLabel="label" optionValue="value"
|
||||
@input="onChange($event)"></RPPDropdown>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Dropdown from '../dropdown/Dropdown';
|
||||
|
||||
export default {
|
||||
inheritAttrs: false,
|
||||
props: {
|
||||
|
@ -24,7 +27,9 @@
|
|||
}
|
||||
return opts;
|
||||
}
|
||||
},
|
||||
components: {
|
||||
'RPPDropdown': Dropdown
|
||||
}
|
||||
|
||||
}
|
||||
</script>
|
Loading…
Reference in New Issue