This file contains 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
" Folding, not need for plugin | |
"" fold enable | |
set fen | |
"" no fold enable | |
set nofen | |
"" fold column | |
set fdc=0 |
This file contains 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 from template --> | |
<spinner :loading="loading"></spinner> | |
<!-- Component --> | |
<template> | |
<div id="spinner"> | |
<div class="form-group text-center" v-if="loading"> | |
<i class="fa fa-2x fa-cog fa-spin"></i> | |
</div> | |
</div> |
This file contains 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
<pagination :pag="pagination" | |
@prev="getUsers(...arguments)" | |
@next="getUsers(...arguments)"> | |
</pagination> | |
<template> | |
<div id="pagination" class="row justify-content-md-center"> | |
<nav aria-label="Page navigation"> | |
<ul class="pagination pagination" v-if="this.pag.count > 0"> | |
<li class="page-item" v-if="this.pag.current_page > 1"> |
NewerOlder