Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
vue-paginate
Advanced tools
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.
npm install vue-paginate --save
You have two ways to setup vue-paginate:
import VuePaginate from 'vue-paginate'
Vue.use(VuePaginate)
var VuePaginate = require('vue-paginate')
Vue.use(VuePaginate)
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.
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!
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.
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>
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
.
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.[listName]Links
: The total number of pages of the list.full[listName]
: The full version of the list (before slicing).FAQs
A simple vue.js plugin to paginate data
The npm package vue-paginate receives a total of 3,374 weekly downloads. As such, vue-paginate popularity was classified as popular.
We found that vue-paginate demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.