Source: http://www.syahzul.com/2016/04/06/how-to-install-oci8-on-ubuntu-14-04-and-php-5-6/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### Keybase proof | |
| I hereby claim: | |
| * I am acomerlatto on github. | |
| * I am acomerlatto (https://keybase.io/acomerlatto) on keybase. | |
| * I have a public key ASCMGHazLT5Y8Yc4eUX7nZVcNoTf8fk-rsP5JALyj_WnPAo | |
| To claim this, I am signing this object: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <nav> | |
| <ul class="pagination justify-content-center"> | |
| <li v-if="pagination.current_page > 1" class="page-item"> | |
| <nuxt-link :to="changePage(pagination.current_page - 1)" aria-label="Previous" class="page-link"> | |
| <span aria-hidden="true">«</span> | |
| </nuxt-link> | |
| </li> | |
| <li v-for="(page, index) in pagesNumber" :key="'paginate' + index" class="page-item" :class="{'active': page == pagination.current_page}"> | |
| <nuxt-link :to="changePage(page)" class="page-link" :key="'paginateLink' + index"> |