We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fce0084 commit 940ce3aCopy full SHA for 940ce3a
1 file changed
docs/.vuepress/client.ts
@@ -3,6 +3,8 @@ import { defineClientConfig } from 'vuepress/client'
3
import { h } from 'vue';
4
// @ts-ignore
5
import { NotFound } from "vuepress-theme-plume/client";
6
+// @ts-ignore
7
+import PageContextMenu from 'vuepress-theme-plume/features/PageContextMenu.vue'
8
9
10
import Swiper from 'vuepress-theme-plume/features/Swiper.vue'
@@ -27,7 +29,9 @@ export default defineClientConfig({
27
29
app.component('Swiper', Swiper)
28
30
},
31
layouts: {
- Layout,
32
+ Layout: h(Layout, null, {
33
+ 'doc-title-after': () => h(PageContextMenu),
34
+ }),
35
NotFound: () => h(NotFound, null, {
36
'layout-top': () => h(BannerTop),
37
}),
0 commit comments