mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-11 06:27:23 +08:00
20 lines
731 B
JavaScript
20 lines
731 B
JavaScript
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 geoComp from "./components/Geo.vue";
|
|
|
|
// 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);
|
|
app.component("geoComp", geoComp);
|
|
// app.use(ElementPlus);
|
|
},
|
|
}); |