mirror of
https://github.com/pengzhanbo/vuepress-theme-plume.git
synced 2026-04-23 10:58:13 +08:00
11 lines
410 B
TypeScript
11 lines
410 B
TypeScript
import { type ClientConfig, defineClientConfig } from 'vuepress/client'
|
|
import HeroTintPlateConfig from './themes/components/HeroTintPlateConfig.vue'
|
|
import CanIUseConfig from './themes/components/CanIUseConfig.vue'
|
|
|
|
export default defineClientConfig({
|
|
enhance({ app }) {
|
|
app.component('HeroTintPlateConfig', HeroTintPlateConfig)
|
|
app.component('CanIUseConfig', CanIUseConfig)
|
|
},
|
|
}) as ClientConfig
|