Skip to content

Commit e14ccc9

Browse files
committed
moniker test
1 parent 8c7eaf4 commit e14ccc9

File tree

1 file changed

+7
-15
lines changed

1 file changed

+7
-15
lines changed

docs/javascript/quickstart-vuejs-with-nodejs.md

Lines changed: 7 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dev_langs:
1313
- JavaScript
1414
ms.workload:
1515
- "nodejs"
16-
monikerRange: 'vs-2019'
16+
monikerRange: '= vs-2019'
1717
---
1818
# Quickstart: Use Visual Studio to create your first Vue.js app
1919

@@ -28,20 +28,17 @@ In this 5-10 minute introduction to the Visual Studio integrated development env
2828

2929
* You must have Visual Studio installed and the Node.js development workload.
3030

31-
::: moniker range=">=vs-2019"
32-
If you haven't already installed Visual Studio 2019, go to the [Visual Studio downloads](https://visualstudio.microsoft.com/downloads/) page to install it for free.
33-
::: moniker-end
31+
If you haven't already installed Visual Studio 2019, go to the [Visual Studio downloads](https://visualstudio.microsoft.com/downloads/) page to install it for free.
3432

33+
If you need to install the workload but already have Visual Studio, go to **Tools** > **Get Tools and Features...**, which opens the Visual Studio Installer. Choose the **Node.js development** workload, then choose **Modify**.
3534

36-
If you need to install the workload but already have Visual Studio, go to **Tools** > **Get Tools and Features...**, which opens the Visual Studio Installer. Choose the **Node.js development** workload, then choose **Modify**.
37-
38-
![Node.js workload in VS Installer](./media/tutorial-nodejs-workload.png)
35+
![Node.js workload in VS Installer](./media/tutorial-nodejs-workload.png)
3936

4037
* You must have the Node.js runtime installed.
4138

42-
If you don't have it installed, we recommend you install the LTS version from the [Node.js](https://nodejs.org/en/download/) website for best compatibility with outside frameworks and libraries. Node.js is built for 32-bit and 64-bit architectures. The Node.js tools in Visual Studio, included in the Node.js workload, support both versions. Only one is required and the Node.js installer only supports one being installed at a time.
43-
44-
In general, Visual Studio automatically detects the installed Node.js runtime. If it does not detect an installed runtime, you can configure your project to reference the installed runtime in the properties page (after you create a project, right-click the project node, choose **Properties**, and set the **Node.exe path**). You can use a global installation of Node.js or you can specify the path to a local interpreter in each of your Node.js projects.
39+
If you don't have it installed, we recommend you install the LTS version from the [Node.js](https://nodejs.org/en/download/) website for best compatibility with outside frameworks and libraries. Node.js is built for 32-bit and 64-bit architectures. The Node.js tools in Visual Studio, included in the Node.js workload, support both versions. Only one is required and the Node.js installer only supports one being installed at a time.
40+
41+
In general, Visual Studio automatically detects the installed Node.js runtime. If it does not detect an installed runtime, you can configure your project to reference the installed runtime in the properties page (after you create a project, right-click the project node, choose **Properties**, and set the **Node.exe path**). You can use a global installation of Node.js or you can specify the path to a local interpreter in each of your Node.js projects.
4542

4643
## Create a project
4744

@@ -55,11 +52,9 @@ First, you'll create a Vue.js web application project.
5552

5653
1. Create a new project.
5754

58-
::: moniker range=">=vs-2019"
5955
Press **Esc** to close the start window. Type **Ctrl + Q** to open the search box, type **Basic Vue.js**, then choose **Basic Vue.js Web application** (either JavaScript or TypeScript). In the dialog box that appears, type the name **basic-vuejs**, and then choose **Create**.
6056

6157
![Vue.js template](../javascript/media/vs-2019/vuejs-template.png)
62-
::: moniker-end
6358

6459
If you don't see the **Basic Vue.js Web application** project template, you must add the **Node.js development** workload. For detailed instructions, see the [Prerequisites](#prerequisites).
6560

@@ -95,12 +90,9 @@ First, you'll create a Vue.js web application project.
9590

9691
## Build the project
9792

98-
::: moniker range=">=vs-2019"
9993
1. Next, choose **Build** > **Build Solution** to build the project.
10094

10195
1. Check the **Output** window to see build results, and choose **Build** from the **Show output from** list.
102-
::: moniker-end
103-
10496

10597
The JavaScript Vue.js project template (and older versions of the TypeScript template) use the `build` npm script by configuring a post build event. If you want to modify this setting, open the project file (*\<projectname\>.njsproj*) from Windows Explorer and locate this line of code:
10698

0 commit comments

Comments
 (0)