1
0
forked from bot/app

📝 新增全球统计

This commit is contained in:
2024-08-01 13:11:05 +08:00
parent 2451849fd6
commit 5d22f20ce3
4 changed files with 49 additions and 25 deletions

View File

@ -3,6 +3,7 @@ import {defineClientConfig} from "vuepress/client";
import resourceStoreComp from "./components/ResStore.vue";
import pluginStoreComp from "./components/PluginStore.vue";
import dashComp from "./components/Dash.vue";
import homeComp from "./components/Home.vue";
import ElementPlus from 'element-plus';
@ -10,6 +11,7 @@ import ElementPlus from 'element-plus';
export default defineClientConfig({
enhance: ({app, router, siteData}) => {
app.component("homeComp", homeComp);
app.component("dashComp", dashComp);
app.component("resourceStoreComp", resourceStoreComp);
app.component("pluginStoreComp", pluginStoreComp);