对于 Vue CLI v3,您可以使用vue create
或vue ui
引导应用程序。对于 Vue CLI v2,您使用vue init
.
如果你安装了 Vue CLI v3,你仍然可以使用vue init
,尽管它被认为是一个遗留 API:
$ vue --version
3.0.0
$ vue init
Usage: init [options] <template> <app-name>
generate a project from a remote template (legacy API, requires @vue/cli-init)
Options:
-c, --clone Use git clone when fetching remote template
--offline Use cached template
-h, --help output usage information
$ vue create
Usage: create [options] <app-name>
create a new project powered by vue-cli-service
Options:
-p, --preset <presetName> Skip prompts and use saved or remote preset
-d, --default Skip prompts and use default preset
-i, --inlinePreset <json> Skip prompts and use inline JSON string as preset
-m, --packageManager <command> Use specified npm client when installing dependencies
-r, --registry <url> Use specified npm registry when installing dependencies (only for npm)
-g, --git [message] Force git initialization with initial commit message
-n, --no-git Skip git initialization
-f, --force Overwrite target directory if it exists
-c, --clone Use git clone when fetching remote preset
-x, --proxy Use specified proxy when creating project
-b, --bare Scaffold project without beginner instructions
-h, --help output usage information
Vue CLI 在版本 3 上是稳定的,所以我会确保你已经安装了它,并使用vue create
命令或vue ui
命令。它vue ui
仍处于测试阶段,我还没有尝试过,但它看起来不错。您可以通过 CLI 网站了解更多信息:https ://cli.vuejs.org/ 。