mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-24 09:05:04 +08:00
40 lines
654 B
Vue
40 lines
654 B
Vue
<template>
|
|
<v-app>
|
|
<v-main>
|
|
<v-row>
|
|
<v-col
|
|
cols="12"
|
|
sm="6"
|
|
md="4"
|
|
v-for="(plugin, index) in plugins"
|
|
:key="index"
|
|
>
|
|
<v-card>
|
|
<v-card-title>{{ plugin.name }}</v-card-title>
|
|
<v-card-text>{{ plugin.desc }}</v-card-text>
|
|
</v-card>
|
|
</v-col>
|
|
</v-row>
|
|
</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>
|