Merge branch 'dev' into master

This commit is contained in:
Ju4tCode
2021-02-02 12:04:01 +08:00
committed by GitHub
66 changed files with 5633 additions and 203 deletions

View File

@ -44,7 +44,7 @@
<v-col
cols="12"
sm="6"
v-for="(plugin, index) in filteredPlugins"
v-for="(plugin, index) in displayPlugins"
:key="index"
>
<v-card>
@ -126,6 +126,9 @@ export default {
plugin.author.indexOf(this.filterText) != -1
);
});
},
displayPlugins() {
return this.filteredPlugins.slice((this.page - 1) * 10, this.page * 10);
}
},
methods: {

View File

@ -116,7 +116,7 @@ module.exports = context => ({
title: "协议适配",
collapsable: false,
sidebar: "auto",
children: ["cqhttp-guide", "ding-guide"]
children: ["cqhttp-guide", "ding-guide", "mirai-guide"]
}
],
"/advanced/": [
@ -209,6 +209,10 @@ module.exports = context => ({
{
title: "nonebot.adapters.ding 模块",
path: "adapters/ding"
},
{
title: "nonebot.adapters.mirai 模块",
path: "adapters/mirai"
}
]
}