Skip to content

Commit

Permalink
update create vue box
Browse files Browse the repository at this point in the history
  • Loading branch information
mostafa-nematpour committed Feb 1, 2024
1 parent d7a77fe commit ea7975e
Showing 1 changed file with 34 additions and 1 deletion.
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

0 comments on commit ea7975e

Please sign in to comment.