mirror of
https://github.com/wahyd4/vuepress.git
synced 2026-08-19 18:25:51 +10:00
@vuepress/plugin-pagination
pagination plugin for vuepress
Usage
module.exports = {
plugins: ['@vuepress/pagination']
}
postsFilter
- Type:
function - Default:
(({ type }) => type === 'post')`
postsSorter
- Type:
function - Default:
((prev, next) => {
const prevTime = new Date(prev.frontmatter.date).getTime()
const nextTime = new Date(next.frontmatter.date).getTime()
return prevTime - nextTime > 0 ? -1 : 1
})