1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 12:22:07 +02:00
tldr/pages.zh/common/vue.md
2021-09-13 10:21:21 +02:00

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