12 lines
268 B
TypeScript
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: [],
|
||
|
});
|