1
0

12 lines
268 B
TypeScript
Raw Normal View History

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