--- home: true heroImage: /favicon.png actionText: 起步 → actionLink: /zh/guide/ features: - title: 功能丰富 details: 对 Babel、TypeScript、ESLint、PostCSS、PWA、单元测试和 End-to-end 测试提供开箱即用的支持。 - title: 易于扩展 details: 它的插件系统可以让社区根据常见需求构建和共享可复用的解决方案。 - title: 无需 Eject details: Vue CLI 完全是可配置的,无需 eject。这样你的项目就可以长期保持更新了。 - title: CLI 之上的图形化界面 details: 通过配套的图形化界面创建、开发和管理你的项目。 - title: 即刻创建原型 details: 用单个 Vue 文件即刻实践新的灵感。 - title: 面向未来 details: 为现代浏览器轻松产出原生的 ES2015 代码,或将你的 Vue 组件构建为原生的 Web Components 组件。 footer: MIT Licensed | Copyright © 2018-present Evan You --- ## 起步 安装: ``` bash npm install -g @vue/cli # OR yarn global add @vue/cli ``` 创建一个项目: ``` bash vue create my-project # OR vue ui ```