修复:Gitalk登录报错的问题

This commit is contained in:
2022-08-14 13:14:36 +08:00
parent abd80c6b77
commit fdad66d197
10 changed files with 62 additions and 41 deletions

View File

@@ -1,15 +1,11 @@
import DefaultTheme from 'vitepress/theme'
import MyLayout from "./MyLayout.vue"
import MyLayout from './MyLayout.vue'
import './styles/vars.css'
import './styles/custom.css'
import ArticleMetadata from './components/ArticleMetadata.vue'
import WordCloud from './components/WordCloud.vue'
export default {
...DefaultTheme,
Layout: MyLayout,
enhanceApp({ app }) {
app.component('ArticleMetadata', ArticleMetadata)
app.component('WordCloud', WordCloud)
}
}