mirror of
https://framagit.org/les/gancio.git
synced 2025-02-01 00:52:01 +01:00
[admin] remove pagination if not needed
This commit is contained in:
parent
9cef6ef843
commit
056dc421e1
1 changed files with 2 additions and 2 deletions
|
@ -20,10 +20,10 @@
|
|||
@click='place = data.row') {{$t('common.edit')}}
|
||||
|
||||
client-only
|
||||
el-pagination(:page-size='perPage' :currentPage.sync='placePage' :total='places.length')
|
||||
el-pagination(v-if='places.length>perPage' :page-size='perPage' :currentPage.sync='placePage' :total='places.length')
|
||||
</template>
|
||||
<script>
|
||||
import { mapState, mapActions } from 'vuex'
|
||||
import { mapState } from 'vuex'
|
||||
export default {
|
||||
data () {
|
||||
return {
|
||||
|
|
Loading…
Reference in a new issue