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=""> | |
<ul v-if="pages" class="list-reset"> | |
<li class="inline-block bg-white hover:bg-blue-lightest border mr-1"> | |
<a href="#" | |
class="no-underline text-grey-darker block py-3 px-4" | |
:class="{'bg-grey-lightest text-grey cursor-not-allowed': currentPage == 1}" | |
@click.prevent="getPreviousPage">Previous</a> | |
</li> | |
<li v-for="(page, index) in range" |
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
/** | |
* Call protected/private method of a class. | |
* | |
* @param object &$object Instantiated object that we will run method on. | |
* @param string $methodName Method name to call | |
* @param array $parameters Array of parameters to pass into method. | |
* | |
* @return mixed Method return. | |
* @throws \ReflectionException | |
*/ |
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="modal" :class="{'show': show}"> | |
<div class="modal-content"> | |
<div class="header p-5"> | |
<div class="row"> | |
<div class="col-sm-10"> | |
<h3 class="modal-title mt-0">Modal Header</h3> | |
</div> | |
<div class="col-sm-2 text-right"> | |
<button class="h-100 bg-transparent border-0 text-white" @click="closeModal"> |
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 id="url-list-table_paginate" class="dataTables_paginate paging_simple_numbers"> | |
<ul v-if="pages" class="pagination"> | |
<li class="paginate_button page-item previous" | |
:class="{'disabled': currentPage == 1}"> | |
<a href="#" | |
class="page-link" | |
aria-controls="url-list-table" | |
@click.prevent="getPreviousPage">Previous</a> | |
</li> |