mirror of
https://github.com/Ocelot-Social-Community/ocelot.social.git
synced 2025-12-13 07:46:08 +00:00
9 lines
212 B
JavaScript
9 lines
212 B
JavaScript
import { defineClientConfig } from "vuepress/client";
|
|
import MiniBlog from "./components/MiniBlog.vue";
|
|
|
|
export default defineClientConfig({
|
|
enhance({ app }) {
|
|
app.component("MiniBlog", MiniBlog);
|
|
},
|
|
});
|