Skip to content

Commit 0db269a

Browse files
committed
feat: trigger onContentUpdated on frontmatter-only changes too
1 parent c46e4b7 commit 0db269a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/client/app/components/Content.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { defineComponent, h } from 'vue'
1+
import { defineComponent, h, watch } from 'vue'
22
import { useData, useRoute } from 'vitepress'
33
import { contentUpdatedCallbacks } from '../utils'
44

@@ -11,7 +11,8 @@ export const Content = defineComponent({
1111
},
1212
setup(props) {
1313
const route = useRoute()
14-
const { site } = useData()
14+
const { frontmatter, site } = useData()
15+
watch(frontmatter, runCbs, { deep: true, flush: 'post' })
1516
return () =>
1617
h(
1718
props.as,

0 commit comments

Comments
 (0)