mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-11 06:27:23 +08:00
8 lines
234 B
JavaScript
8 lines
234 B
JavaScript
import { defineClientConfig } from "vuepress/client";
|
|
import storeComp from "./components/store.vue";
|
|
|
|
export default defineClientConfig({
|
|
enhance: ({ app, router, siteData }) => {
|
|
app.component("storeComp", storeComp);
|
|
},
|
|
}); |