Skip to content
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

fix: fix syntax highlight #2754

Merged
merged 1 commit into from
Mar 17, 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
34 changes: 17 additions & 17 deletions src/guide/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,21 +37,21 @@ Make sure you have an up-to-date version of [Node.js](https://nodejs.org/) insta

</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
```
Expand Down Expand Up @@ -79,35 +79,35 @@ If you are unsure about an option, simply choose `No` by hitting enter for now.
<VTCodeGroup>
<VTCodeGroupTab label="npm">

```sh
$ cd <your-project-name>
```sh-vue
$ cd {{'<your-project-name>'}}
$ npm install
$ npm run dev
```

</VTCodeGroupTab>
<VTCodeGroupTab label="pnpm">
```sh
$ cd <your-project-name>

```sh-vue
$ cd {{'<your-project-name>'}}
$ pnpm install
$ pnpm run dev
```

</VTCodeGroupTab>
<VTCodeGroupTab label="yarn">
```sh
$ cd <your-project-name>

```sh-vue
$ cd {{'<your-project-name>'}}
$ yarn
$ yarn dev
```

</VTCodeGroupTab>
<VTCodeGroupTab label="bun">
```sh
$ cd <your-project-name>

```sh-vue
$ cd {{'<your-project-name>'}}
$ bun install
$ bun run dev
```
Expand All @@ -133,21 +133,21 @@ When you are ready to ship your app to production, run the following:

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

```sh
$ pnpm run build
```

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

```sh
$ yarn build
```

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

```sh
$ bun run build
```
Expand Down