Skip to content

Commit

Permalink
Feat: Update the create vue box #927 (#931)
Browse files Browse the repository at this point in the history
  • Loading branch information
tisma95 authored Feb 11, 2024
1 parent d667dfe commit 2b6509c
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>

# Outils {#tooling}

## Essayer en ligne {#try-it-online}
Expand All @@ -21,7 +25,36 @@ Il est également recommandé d'utiliser ces terrains de jeu en ligne pour fourn

Pour commencer avec Vite + Vue, exécutez simplement :

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

Cette commande installera et exécutera [create-vue](https://github.com/vuejs/create-vue), l'outil officiel d'élaboration d'un projet Vue.

Expand Down

0 comments on commit 2b6509c

Please sign in to comment.