LiteyukiBot/docs/.vuepress/client.js

22 lines
733 B
JavaScript
Raw Normal View History

2024-04-19 20:10:20 +00:00
import {defineClientConfig} from "vuepress/client";
2024-08-01 04:23:56 +00:00
2024-06-26 05:52:04 +00:00
import resourceStoreComp from "./components/ResStore.vue";
import pluginStoreComp from "./components/PluginStore.vue";
2024-08-01 04:23:56 +00:00
import dashComp from "./components/Dash.vue";
2024-08-01 05:11:05 +00:00
import homeComp from "./components/Home.vue";
2024-08-04 22:00:07 +00:00
import geoComp from "./components/Geo.vue";
2024-08-01 04:23:56 +00:00
2024-08-04 22:00:07 +00:00
// import ElementPlus from 'element-plus';
2024-08-01 04:23:56 +00:00
2024-04-06 19:24:13 +00:00
export default defineClientConfig({
2024-04-19 20:10:20 +00:00
enhance: ({app, router, siteData}) => {
2024-08-01 05:11:05 +00:00
app.component("homeComp", homeComp);
2024-08-01 04:23:56 +00:00
app.component("dashComp", dashComp);
2024-04-19 20:10:20 +00:00
app.component("resourceStoreComp", resourceStoreComp);
app.component("pluginStoreComp", pluginStoreComp);
2024-08-04 22:00:07 +00:00
app.component("geoComp", geoComp);
// app.use(ElementPlus);
2024-04-19 20:10:20 +00:00
},
2024-08-16 18:24:25 +00:00
});