Skip to content

update create vue box #2687

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 34 additions & 1 deletion src/guide/scaling-up/tooling.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<script setup>
import { VTCodeGroup, VTCodeGroupTab } from '@vue/theme'
</script>

# Tooling {#tooling}

## Try It Online {#try-it-online}
Expand All @@ -21,7 +25,36 @@ It is also recommended to use these online playgrounds to provide reproductions

To get started with Vite + Vue, simply run:

<div class="language-sh"><pre><code><span class="line"><span style="color:var(--vt-c-green);">$</span> <span style="color:#A6ACCD;">npm create vue@latest</span></span></code></pre></div>
<VTCodeGroup>
<VTCodeGroupTab label="npm">

```sh
$ npm create vue@latest
```

</VTCodeGroupTab>
<VTCodeGroupTab label="pnpm">

```sh
$ pnpm create vue@latest
```

</VTCodeGroupTab>
<VTCodeGroupTab label="yarn">

```sh
$ yarn create vue@latest
```

</VTCodeGroupTab>
<VTCodeGroupTab label="bun">

```sh
$ bun create vue@latest
```

</VTCodeGroupTab>
</VTCodeGroup>

This command will install and execute [create-vue](https://github.com/vuejs/create-vue), the official Vue project scaffolding tool.

Expand Down