mirror of
https://github.com/nonebot/nonebot2.git
synced 2025-07-26 15:51:26 +00:00
🚧 add plugin store page
This commit is contained in:
28
docs/.vuepress/components/Plugins.vue
Normal file
28
docs/.vuepress/components/Plugins.vue
Normal file
@ -0,0 +1,28 @@
|
||||
<template>
|
||||
<v-app>
|
||||
<v-main>
|
||||
<v-card>
|
||||
<v-card-title>...</v-card-title>
|
||||
</v-card>
|
||||
</v-main>
|
||||
</v-app>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import plugins from "../public/plugins.json";
|
||||
|
||||
export default {
|
||||
name: "Plugins",
|
||||
data() {
|
||||
return {
|
||||
plugins: plugins
|
||||
};
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style>
|
||||
.v-application--wrap {
|
||||
min-height: 0 !important;
|
||||
}
|
||||
</style>
|
Reference in New Issue
Block a user