mirror of
https://github.com/TriM-Organization/LiteyukiBot-TriM.git
synced 2024-11-11 01:27:29 +08:00
13 lines
475 B
JavaScript
13 lines
475 B
JavaScript
import {defineClientConfig} from "vuepress/client";
|
|
import resourceStoreComp from "./components/ResStore.vue";
|
|
import pluginStoreComp from "./components/PluginStore.vue";
|
|
//导入element-plus
|
|
import ElementPlus from 'element-plus';
|
|
|
|
export default defineClientConfig({
|
|
enhance: ({app, router, siteData}) => {
|
|
app.component("resourceStoreComp", resourceStoreComp);
|
|
app.component("pluginStoreComp", pluginStoreComp);
|
|
app.use(ElementPlus);
|
|
},
|
|
}); |