File tree 3 files changed +5
-1
lines changed
3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -14,10 +14,12 @@ import Layout from './Layout.vue'
14
14
// Note: if we add more optional components here, i.e. components that are not
15
15
// used in the theme by default unless the user imports them, make sure to update
16
16
// the `lazyDefaultThemeComponentsRE` regex in src/node/build/bundle.ts.
17
+ export { default as VPButton } from './components/VPButton.vue'
17
18
export { default as VPHomeHero } from './components/VPHomeHero.vue'
18
19
export { default as VPHomeFeatures } from './components/VPHomeFeatures.vue'
19
20
export { default as VPHomeSponsors } from './components/VPHomeSponsors.vue'
20
21
export { default as VPDocAsideSponsors } from './components/VPDocAsideSponsors.vue'
22
+ export { default as VPSponsors } from './components/VPSponsors.vue'
21
23
export { default as VPTeamPage } from './components/VPTeamPage.vue'
22
24
export { default as VPTeamPageTitle } from './components/VPTeamPageTitle.vue'
23
25
export { default as VPTeamPageSection } from './components/VPTeamPageSection.vue'
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import { buildMPAClient } from './buildMPAClient'
17
17
18
18
// A list of default theme components that should only be loaded on demand.
19
19
const lazyDefaultThemeComponentsRE =
20
- / V P ( H o m e S p o n s o r s | D o c A s i d e S p o n s o r s | T e a m P a g e | T e a m M e m b e r s | L o c a l S e a r c h B o x | A l g o l i a S e a r c h B o x | C a r b o n A d s | D o c A s i d e C a r b o n A d s ) /
20
+ / V P ( H o m e S p o n s o r s | D o c A s i d e S p o n s o r s | T e a m P a g e | T e a m M e m b e r s | L o c a l S e a r c h B o x | A l g o l i a S e a r c h B o x | C a r b o n A d s | D o c A s i d e C a r b o n A d s | S p o n s o r s ) /
21
21
22
22
const clientDir = normalizePath (
23
23
path . resolve ( path . dirname ( fileURLToPath ( import . meta. url ) ) , '../client' )
Original file line number Diff line number Diff line change @@ -3,10 +3,12 @@ import type { DefineComponent } from 'vue'
3
3
import { EnhanceAppContext } from './dist/client/index.js'
4
4
5
5
// TODO: add props for these
6
+ export const VPButton : DefineComponent
6
7
export const VPHomeHero : DefineComponent
7
8
export const VPHomeFeatures : DefineComponent
8
9
export const VPHomeSponsors : DefineComponent
9
10
export const VPDocAsideSponsors : DefineComponent
11
+ export const VPSponsors : DefineComponent
10
12
export const VPTeamPage : DefineComponent
11
13
export const VPTeamPageTitle : DefineComponent
12
14
export const VPTeamPageSection : DefineComponent
You can’t perform that action at this time.
0 commit comments