Tailwind CSS Pagination - Taco Vue

Pagination is a feature through which users can easily switch between pages across a website or app. With the help of this component, a user can select a specific page from a range of pages. Below we are presenting an example of the Pagination component that you can use in your project based on Taco.

<Pagination 
  :current-page="1"
  :per-page="5"
  :total="15"
  @click="currentPage = $event"
  :color="blue"
  :size="md"
/>