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> | |
| <div class="bg-white rounded shadow flex items-center justify-center mt-6 p-4" | |
| v-if="pagination.total > pagination.per_page"> | |
| <ul class=" flex flex-wrap gap-1"> | |
| <li v-if="pagination.current_page > 1"> | |
| <a class="bg-white block px-4 py-3 text-sm border rounded hover:bg-gray-100" | |
| href="javascript:void(0)" | |
| aria-label="Previous" | |
| v-on:click.prevent="changePage(pagination.current_page - 1)"> | |
| <span aria-hidden="true">«</span> |
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
| // Standard ISRT for ANSI and ISO keyboards | |
| default partial | |
| xkb_symbols "basic" { | |
| // the default variant has no AltGr layer and does | |
| // not use CAPS as BackSpace | |
| include "us(basic)" |