1.0.4 • Published 7 months ago

@evgen002/vue-pagination v1.0.4

Weekly downloads
-
License
-
Repository
-
Last release
7 months ago

🔎 Preview

Simple Vue pagination component

⚙ Install

npm install @evgen002/vue-pagination

📄 Example

<script setup>
import { ref } from 'vue'

import VuePagination from '@evgen002/vue-pagination'

const pages = ref(99)
const currentPage = ref(1)

function setPage(page) {
  currentPage.value = page
}
</script>

<template>
  <div>
    <vue-pagination
      :description="`Показано с 1 по ${50}`"
      :pages="pages"
      :current-page="currentPage"
      :limit="50"
      @set-page="setPage"
    ></vue-pagination>
  </div>
</template>
1.0.4

7 months ago

1.0.3

7 months ago

1.0.2

7 months ago

1.0.1

8 months ago

1.0.0

8 months ago