From dcf55b17f48e1321404d1b2f22eee31f09fe1dbf Mon Sep 17 00:00:00 2001 From: Divyansh Singh <40380293+brc-dd@users.noreply.github.com> Date: Wed, 28 Dec 2022 15:59:39 +0530 Subject: [PATCH] docs: add missing import --- docs/guide/theme-introduction.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/guide/theme-introduction.md b/docs/guide/theme-introduction.md index f2ef177464d3..4e76c10e1871 100644 --- a/docs/guide/theme-introduction.md +++ b/docs/guide/theme-introduction.md @@ -182,6 +182,7 @@ Or you could use render function as well. ```js // .vitepress/theme/index.js +import { h } from 'vue' import DefaultTheme from 'vitepress/theme' import MyComponent from './MyComponent.vue'