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 } ```