mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-07-19 07:44:59 +08:00
23 lines
828 B
TypeScript
23 lines
828 B
TypeScript
![]() |
import { defineClientConfig } from 'vuepress/client'
|
||
|
// import RepoCard from 'vuepress-theme-plume/features/RepoCard.vue'
|
||
|
// import NpmBadge from 'vuepress-theme-plume/features/NpmBadge.vue'
|
||
|
// import NpmBadgeGroup from 'vuepress-theme-plume/features/NpmBadgeGroup.vue'
|
||
|
// import Swiper from 'vuepress-theme-plume/features/Swiper.vue'
|
||
|
|
||
|
// import CustomComponent from './theme/components/Custom.vue'
|
||
|
|
||
|
// import './theme/styles/custom.css'
|
||
|
|
||
|
export default defineClientConfig({
|
||
|
enhance({ app }) {
|
||
|
// built-in components
|
||
|
// app.component('RepoCard', RepoCard)
|
||
|
// app.component('NpmBadge', NpmBadge)
|
||
|
// app.component('NpmBadgeGroup', NpmBadgeGroup)
|
||
|
// app.component('Swiper', Swiper) // you should install `swiper`
|
||
|
|
||
|
// your custom components
|
||
|
// app.component('CustomComponent', CustomComponent)
|
||
|
},
|
||
|
})
|