mirror of
https://github.com/pengzhanbo/vuepress-theme-plume.git
synced 2026-04-23 10:58:13 +08:00
13 lines
375 B
Handlebars
13 lines
375 B
Handlebars
import { defineClientConfig } from 'vuepress/client'
|
|
import RepoCard from 'vuepress-theme-plume/features/RepoCard.vue'
|
|
import CustomComponent from './theme/components/Custom.vue'
|
|
|
|
import './theme/styles/custom.css'
|
|
|
|
export default defineClientConfig({
|
|
enhance({ app }) {
|
|
app.component('RepoCard', RepoCard)
|
|
app.component('CustomComponent', CustomComponent)
|
|
},
|
|
})
|