From 3f86b7d32f7c89062427d2b68ab57584a08c477e Mon Sep 17 00:00:00 2001 From: Evan You Date: Mon, 14 Jun 2021 12:32:43 -0400 Subject: [PATCH] chore: fix docs dead link --- docs/guide/using-vue.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/using-vue.md b/docs/guide/using-vue.md index 383eb3d9..504dfd63 100644 --- a/docs/guide/using-vue.md +++ b/docs/guide/using-vue.md @@ -103,7 +103,7 @@ This is a .md using a custom component ### Registering global components in the theme -If the components are going to be used across several pages in the docs, they can be registered globally in the theme (or as part of extending the default VitePress theme). Check out the [Customization Guide](./customization.md) for more information. +If the components are going to be used across several pages in the docs, they can be registered globally in the theme (or as part of extending the default VitePress theme). Check out the [Theming Guide](./theming.md) for more information. In `.vitepress/theme/index.js`, the `enhanceApp` function receives the Vue `app` instance so you can [register components](https://v3.vuejs.org/guide/component-registration.html#component-registration) as you would do in a regular Vue application.