From 3c8f9d07706296526096500461c3deff92208c7d Mon Sep 17 00:00:00 2001 From: Travis Collins Date: Thu, 2 May 2024 10:09:14 -0600 Subject: [PATCH] docs: component inspector option --- docs/guide/vite-plugin.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/guide/vite-plugin.md b/docs/guide/vite-plugin.md index 087b9792..4c08ee18 100644 --- a/docs/guide/vite-plugin.md +++ b/docs/guide/vite-plugin.md @@ -70,5 +70,11 @@ interface VitePluginVueDevToolsOptions { * @deprecated This option is deprecated and removed in 7.1.0. The plugin now automatically detects the correct host. */ clientHost?: string | false + + /** + * Enable Vue Component Inspector + * @default true + */ + componentInspector?: boolean | true } ```