File tree Expand file tree Collapse file tree 1 file changed +34
-1
lines changed Expand file tree Collapse file tree 1 file changed +34
-1
lines changed Original file line number Diff line number Diff line change
1
+ <script setup >
2
+ import { VTCodeGroup , VTCodeGroupTab } from ' @vue/theme'
3
+ </script >
4
+
1
5
# Tooling {#tooling}
2
6
3
7
## Try It Online {#try-it-online}
@@ -21,7 +25,36 @@ It is also recommended to use these online playgrounds to provide reproductions
21
25
22
26
To get started with Vite + Vue, simply run:
23
27
24
- <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 >
28
+ <VTCodeGroup >
29
+ <VTCodeGroupTab label =" npm " >
30
+
31
+ ``` sh
32
+ $ npm create vue@latest
33
+ ```
34
+
35
+ </VTCodeGroupTab >
36
+ <VTCodeGroupTab label =" pnpm " >
37
+
38
+ ``` sh
39
+ $ pnpm create vue@latest
40
+ ```
41
+
42
+ </VTCodeGroupTab >
43
+ <VTCodeGroupTab label =" yarn " >
44
+
45
+ ``` sh
46
+ $ yarn create vue@latest
47
+ ```
48
+
49
+ </VTCodeGroupTab >
50
+ <VTCodeGroupTab label =" bun " >
51
+
52
+ ``` sh
53
+ $ bun create vue@latest
54
+ ```
55
+
56
+ </VTCodeGroupTab >
57
+ </VTCodeGroup >
25
58
26
59
This command will install and execute [ create-vue] ( https://github.com/vuejs/create-vue ) , the official Vue project scaffolding tool.
27
60
You can’t perform that action at this time.
0 commit comments