Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

vue-paginate

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-paginate

A simple vue.js plugin to paginate data

  • 1.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4.5K
increased by13.42%
Maintainers
1
Weekly downloads
 
Created
Source

vue-paginate

This plugin helps you use pagination on lists within seconds!

It's basically a directive with a bunch of methods defined on the vm. When you use this directive on some list, it'll be sliced according to the number of items per page, which you specify. Then, you'll work with those slices using the methods & data that automatically gets defined on the vm — not all vms, only the one you used the directive in.

Setup

npm install vue-paginate --save

You have two ways to setup vue-paginate:

CommonJS (Webpack/Browserify)
  • ES6
import VuePaginate from 'vue-paginate'
Vue.use(VuePaginate)
  • ES5
var VuePaginate = require('vue-paginate')
Vue.use(VuePaginate)
Include

Include it directly with a <script> tag. In this case, you don't need to write Vue.use(VuePaginate), this will be done automatically for you.

Usage

Here's an example:

new Vue({
  el: '#app',
  data: {
    langs: ['PHP', 'JavaScript', 'HTML', 'CSS', 'Ruby', 'Python']
  }
});
<!-- data -->
<ul v-paginate:3="langs">
  <li v-for="lang in langs">
    {{ lang }}
  </li>
</ul>

<!-- links -->
<ul>
  <li v-for="langLink in langsLinks">
    <a @click="changeLangsPage(langLink)" href="#">
      {{ langLink + 1 }}
    </a>
  </li>
</ul>

That's it!

How it works?

When you try the previous example, you'll get two pages, each one contains three items. We specified that by using :3 argument, which means we want to show 3 items per page!

In the links section, we used a variable named langsLinks. This one is generated for us by the plugin, which follows the convention [listName]Links. This variable contains the total number of pages needed to display the whole list.

To show the links, we ran a loop — to get all page numbers, from zero to the last one — and used each one in the method changeLangsPage() (which also follows a convention: change[listName]Page). This method takes the page number and return all items in that page.

Use Next/Prev buttons

In some cases, you'll want to navigate pages using next/prev links instead of page numbers.

To do that, all you have to do is to use the methods next[listName]Page & prev[listName]Page.

Like this:

<!-- links -->
<a @click="prevLangsPage()" href="#">
  Prev
</a>

<a @click="nextLangsPage()" href="#">
  Next
</a>
Accessing the full version

This plugin operates on the original data that you've defined in your vm. This means, you'll no longer have access to the full version (before slicing).

However, before the plugin does its slicing, it stores the full version in another list named full[listName]. So for this example it would be fullLangs.

Conventions

Methods
  • change[listName]Page: Go to a specific page (using the page number).
  • next[listName]Page: Go to the next page.
  • prev[listName]Page: Go to the previous page.
Data
  • [listName]Links: The total number of pages of the list.
  • full[listName]: The full version of the list (before slicing).

Keywords

FAQs

Package last updated on 07 Mar 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc