mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-11 07:37:24 +08:00
14 lines
478 B
JavaScript
14 lines
478 B
JavaScript
import {defineClientConfig} from "vuepress/client";
|
|
import resourceStoreComp from "./components/res_store.vue";
|
|
import pluginStoreComp from "./components/plugin_store.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);
|
|
|
|
},
|
|
}); |