Skip to content

Commit

Permalink
fix(Pagination): page input use change event
Browse files Browse the repository at this point in the history
  • Loading branch information
vvpvvp committed Aug 15, 2019
1 parent 09b0d3e commit c659e19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/pagination/pagination.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<i class="h-icon-angle-right"></i>
</span>
</span>
<input type="text" :style="{order:orders.jumper}" v-if="orders.jumper!=-1 && count > 0" class="h-page-jumper-input h-input" :value="curNow" @blur="jump" @keyup.enter="jump">
<input type="text" :style="{order:orders.jumper}" v-if="orders.jumper!=-1 && count > 0" class="h-page-jumper-input h-input" :value="curNow" @change="jump" @keyup.enter="jump">
</div>
</template>
<script>
Expand Down

0 comments on commit c659e19

Please sign in to comment.