diff --git a/src/guide/installation.md b/src/guide/installation.md index 7f396dc3ab..7cd93128a8 100644 --- a/src/guide/installation.md +++ b/src/guide/installation.md @@ -18,7 +18,7 @@ Detailed release notes for each version are available on [GitHub](https://github ## Vue Devtools > Currently in Beta - Vuex and Router integration is still WIP - + Learn how to install and use Vue Devtools in a free Vue School lesson When using Vue, we recommend also installing the [Vue Devtools](https://github.com/vuejs/vue-devtools#vue-devtools) in your browser, allowing you to inspect and debug your Vue applications in a more user-friendly interface. @@ -117,6 +117,15 @@ $ yarn $ yarn dev ``` +Or with pnpm: + +```bash +$ pnpm create vite -- --template vue +$ cd +$ pnpm install +$ pnpm dev +``` + ## Explanation of Different Builds In the [`dist/` directory of the npm package](https://cdn.jsdelivr.net/npm/vue@3.0.2/dist/) you will find many different builds of Vue.js. Here is an overview of which `dist` file should be used depending on the use-case.