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

12 lines
268 B
TypeScript
Raw Permalink Normal View History

2023-02-26 18:20:43 +00:00
import { defineClientConfig } from '@vuepress/client';
import ImgFigure from './components/ImgFigure.vue';
export default defineClientConfig({
2023-03-04 22:04:03 +00:00
enhance({ app }) {
2023-02-26 18:20:43 +00:00
app.component('ImgFigure', ImgFigure);
},
setup() {},
layouts: {},
rootComponents: [],
2023-03-04 22:04:03 +00:00
});