Open lihaizhong opened 5 years ago
Can you provide a reproduction repo?
Can you provide a reproduction repo?
我的版本可能不够新,目前发现 github上的代码是正确的,我本地的代码是 存在问题的。
这是我当前的依赖包版本
注:下载的时候需要使用 npm install @vuepress/plugin-pagination@next -D, 否则下载的版本会存在这个问题
Can you provide a reproduction repo?
我下载了@vuepress/plugin-pagination": "^1.0.0-alpha.39版本
index.js文件中的getIntervallers函数中,end已经 + 1
function getIntervallers (max, interval) {
const count = max % interval === 0 ? Math.floor(max / interval) : Math.floor(max / interval) + 1
const arr = [...Array(count)]
return arr.map((v, index) => {
const start = index * interval
const end = (index + 1) * interval
return [start, end > max ? max : end]
})
}
而get posts时 又做了一次 +1 的操作
get posts () {
const [start, end] = this._currentPage.interval
return this._posts.slice(start, end + 1)
}
result:
Can you provide a reproduction repo?
我的版本可能不够新,目前发现 github上的代码是正确的,我本地的代码是 存在问题的。
这是我当前的依赖包版本
注:下载的时候需要使用 npm install @vuepress/plugin-pagination@next -D, 否则下载的版本会存在这个问题
你好, 能请问下你的 vscode 主题是哪个吗
I'll appreciate if you take the time to translate the issue to English so anybody can answer, you will also benefit from this :)
Can you provide a reproduction repo?
我的版本可能不够新,目前发现 github上的代码是正确的,我本地的代码是 存在问题的。 这是我当前的依赖包版本 注:下载的时候需要使用 npm install @vuepress/plugin-pagination@next -D, 否则下载的版本会存在这个问题
你好, 能请问下你的 vscode 主题是哪个吗
我用的是Palenight
Bug report
Version
Steps to reproduce
What is expected?
What is actually happening?
Other relevant information