From ac0fadfe3f065f06edc0dde2d08bf7f99fc77ad2 Mon Sep 17 00:00:00 2001 From: kazuya kawaguchi Date: Wed, 1 May 2019 17:46:26 +0900 Subject: [PATCH] docs: fix dead link --- docs/dev-guide/plugin-dev.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/dev-guide/plugin-dev.md b/docs/dev-guide/plugin-dev.md index 7197ae559d..f8c1cdc766 100644 --- a/docs/dev-guide/plugin-dev.md +++ b/docs/dev-guide/plugin-dev.md @@ -102,7 +102,7 @@ A generator should export a function which receives three arguments: And if the user creates a project using the `foo` preset, then the generator of `@vue/cli-plugin-foo` will receive `{ option: 'bar' }` as its second argument. -For a 3rd party plugin, the options will be resolved from the prompts or command line arguments when the user executes `vue invoke` (see [Prompts for 3rd party plugins](#prompts-for-3rd-party-plugins)). +For a 3rd party plugin, the options will be resolved from the prompts or command line arguments when the user executes `vue invoke` (see [Prompts](#prompts)). 3. The entire preset (`presets.foo`) will be passed as the third argument.