From 61e457555b9472e11b7c404a3650528e3c707c7c Mon Sep 17 00:00:00 2001 From: Haoqun Jiang Date: Tue, 24 Dec 2024 23:14:19 +0800 Subject: [PATCH] docs: `--help` must be prefixed with `--`, otherwise it'll be passed to `npx` [skip ci] --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 075dff14..5784f8c0 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ npm create vue@latest > [!NOTE] > (`@latest` or `@legacy`) MUST NOT be omitted, otherwise `npm` may resolve to a cached and outdated version of the package. -By default the command will run in interactive mode, but you can also provide feature flags in the CLI arguments to skip the prompts. Run `npm create vue@latest --help` to see all available options. +By default the command will run in interactive mode, but you can also provide feature flags in the CLI arguments to skip the prompts. Run `npm create vue@latest -- --help` to see all available options. If you need to support IE11, you can create a Vue 2 project with: -- 2.39.5