1
0
Fork 0
conlang.phundrak.com/docs/.vuepress/client.ts

12 lines
268 B
TypeScript

import { defineClientConfig } from '@vuepress/client';
import ImgFigure from './components/ImgFigure.vue';
export default defineClientConfig({
enhance({ app }) {
app.component('ImgFigure', ImgFigure);
},
setup() {},
layouts: {},
rootComponents: [],
});