Commit 2fc06cc3 authored by Leopoldthecoder's avatar Leopoldthecoder

fix pagination select

parent ce3bed6c
...@@ -141,14 +141,14 @@ export default { ...@@ -141,14 +141,14 @@ export default {
<span class="el-pagination__sizes"> <span class="el-pagination__sizes">
<el-select <el-select
value={ this.$parent.internalPageSize } value={ this.$parent.internalPageSize }
on-change={ this.handleChange }> on-input={ this.handleChange }>
{ {
this.pageSizes.map(item => this.pageSizes.map(item =>
<el-option <el-option
value={ item } value={ item }
label={ item + ' ' + this.t('el.pagination.pagesize') }> label={ item + ' ' + this.t('el.pagination.pagesize') }>
</el-option> </el-option>
) )
} }
</el-select> </el-select>
</span> </span>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment