8000 merge resolved · MissionVistaCS/Vue.js-Tutorial@195b03f · GitHub
[go: up one dir, main page]

Skip to content

Commit 195b03f

Browse files
committed
merge resolved
2 parents 6e97082 + 657e1c8 commit 195b03f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,21 @@ A short, concise tutorial on the popular front-end framework Vue.js. Written for
1818
Vue.js is tremendously simple to install and use. Although we will be using the Vue command line interface (vue-cli), you can get started with Vue in 3 different ways.
1919

2020
**CDN:** [To Github Section](https://github.com/MissionVistaCSClub/Vue.js-Tutorial/tree/master/GettingStarted 8000 /InstallationAndUsage/1.1.A)
21+
2122
Import Vue.js into your `index.html` file using the `<script>` tag.
2223

2324
```html
2425
<!-- development version with alarms and alerts -->
2526
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
2627
```
27-
2828

2929
**NPM:** [To Github Section](https://github.com/MissionVistaCSClub/Vue.js-Tutorial/tree/master/GettingStarted/InstallationAndUsage/1.1.B)
30+
3031
Start by creating a project with npm
3132
```bash
3233
$ npm init -y
3334
```
3435

35-
3636
Install Vue and save dependencies
3737
```bash
3838
$ npm install -s vue
@@ -48,6 +48,7 @@ Then in your `index.html` file reference vue with a `<script>` tag
4848

4949

5050
**Vue-CLI:** [To Github Section](https://github.com/MissionVistaCSClub/Vue.js-Tutorial/tree/master/GettingStarted/InstallationAndUsage/1.1.C)
51+
5152
This is the method we will most often use. The Vue-CLI allows us to quickly create Single Page Applications with built in templates.
5253
Start by installing the Vue-CLI module from NPM
5354

0 commit comments

Comments
 (0)
0