mirror of
https://github.com/vuejs/vue-cli.git
synced 2026-02-09 00:18:28 -06:00
57 lines
1.4 KiB
Markdown
57 lines
1.4 KiB
Markdown
---
|
|
home: true
|
|
heroImage: /logo.png
|
|
actionText: Get Started →
|
|
actionLink: /guide/
|
|
footer: MIT Licensed | Copyright © 2018-present Evan You
|
|
---
|
|
|
|
<div style="text-align: center">
|
|
<Bit/>
|
|
</div>
|
|
|
|
<div class="features">
|
|
<div class="feature">
|
|
<h2>Feature Rich</h2>
|
|
<p>Out-of-the-box support for Babel, TypeScript, ESLint, PostCSS, PWA, Unit Testing & End-to-end Testing.</p>
|
|
</div>
|
|
<div class="feature">
|
|
<h2>Extensible</h2>
|
|
<p>The plugin system allows the community to build and share reusable solutions to common needs.</p>
|
|
</div>
|
|
<div class="feature">
|
|
<h2>No Need to Eject</h2>
|
|
<p>Vue CLI is fully configurable without the need for ejecting. This allows your project to stay up-to-date for the long run.</p>
|
|
</div>
|
|
<div class="feature">
|
|
<h2>Graphical User Interface</h2>
|
|
<p>Create, develop and manage your projects through an accompanying graphical user interface.</p>
|
|
</div>
|
|
<div class="feature">
|
|
<h2>Instant Prototyping</h2>
|
|
<p>Instantly prototype new ideas with a single Vue file.</p>
|
|
</div>
|
|
<div class="feature">
|
|
<h2>Future Ready</h2>
|
|
<p>Effortlessly ship native ES2015 code for modern browsers, or build your vue components as native web components.</p>
|
|
</div>
|
|
</div>
|
|
|
|
## Getting Started
|
|
|
|
Install:
|
|
|
|
``` bash
|
|
npm install -g @vue/cli
|
|
# OR
|
|
yarn global add @vue/cli
|
|
```
|
|
|
|
Create a project:
|
|
|
|
``` bash
|
|
vue create my-project
|
|
# OR
|
|
vue ui
|
|
```
|