initial commit

This commit is contained in:
2023-02-26 19:20:43 +01:00
commit 2ac1781763
105 changed files with 5471 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import { defineClientConfig } from '@vuepress/client';
import ImgFigure from './components/ImgFigure.vue';
export default defineClientConfig({
enhance({app}) {
app.component('ImgFigure', ImgFigure);
},
setup() {},
layouts: {},
rootComponents: [],
})