feat(docs): Add vitepress for docs & docs workspace

This commit is contained in:
Braks
2022-04-04 21:42:48 +02:00
parent bf3ca8bfda
commit e71b9d5e48
21 changed files with 1293 additions and 13 deletions
+10
View File
@@ -0,0 +1,10 @@
import { Theme } from 'vitepress';
import DefaultTheme from 'vitepress/theme'
import Demo from '../components/Demo.vue'
export default {
...DefaultTheme,
enhanceApp({ app }) {
app.component('Demo', Demo)
}
} as Theme