티스토리 뷰
728x90
v-for 을 쓰지 않은 pagination 처리는 뷰 부트스트랩 공식홈페이지에서도 나와있다.
https://bootstrap-vue.org/docs/components/pagination#pagination
하지만
v-for를 사용해서 pagination처리를 해주고 싶을 때,
아래와 같이 해주면 된다.
루프를 돌릴 때 미리 computed를 통해 perPage 만큼씩 나눠주면 된다.
<template>
<div v-for="list in lists" :key="list.id">
{{ list.name }}
</div>
<b-pagination
:total-rows="totalRows"
v-model="currentPage"
:per-page="perPage"
/>
</template>
<script>
export default {
data () {
return {
currentPage: 1,
perPage: 5,
}
},
computed: {
lists () {
const items = this.$store.getters.loadedLists
// Return just page of items needed
return items.slice(
(this.currentPage - 1) * this.perPage,
this.currentPage * this.perPage
)
},
totalRows () {
return this.$store.getters.loadedLists.length
}
}
}
</script>
참고
: https://github.com/bootstrap-vue/bootstrap-vue/issues/2133
반응형
'Coding-Study > Vue.js' 카테고리의 다른 글
[Vue.js] vue-cookie 사용 및 뷰 쿠키로 아이디 저장 체크박스 기능 구현하기 (0) | 2021.11.25 |
---|---|
[vue.js] 페이지 리로드 하는 법 (0) | 2021.11.24 |
[vue.js] router-link :to 가 실행되는 조건 만들어주는 법 (0) | 2021.11.23 |
[Vue.js] vuex (0) | 2021.11.16 |
[vue] v-bind로 index 보내기 (0) | 2021.11.13 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 1699 자바
- SWEA
- swea 타일링 자바
- 프로그래머스 더 맵게
- swea 1240
- 더 맵게
- swea 1240 자바
- 메뉴리뉴얼 풀이
- swea 4070 타일링
- yoloV3
- union-find
- 백준 풀이
- 백준 17144
- poker swea
- 백준파이썬
- swea 타일링
- 1240 자바
- 백준
- 우분투
- 백준 dp 문제
- 3996 자바
- 삼성청년SW아카데미
- 프로그래머스 자바
- 타일링 자바
- 파이썬 풀이
- ubuntu
- SSAFY
- 프로그래머스
- 프로그래머스 파이썬
- 파이썬
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함