mirror of https://github.com/CrimsonTome/tldr.git
434 B
434 B
vue-cli
用于初始化 Vue.js 项目的 CLI. 此命令也有关于其子命令的文件,例如:
vue build
. 更多信息:https://cli.vuejs.org.
- 从模板创建新项目:
vue init {{template}} {{project_name}}
- 从本地模板创建新项目:
vue init {{path/to/template_directory}} {{project_name}}
- 从 GitHub 上拉取模板并创建新项目:
vue init {{username}}/{{repo}} {{project_name}}