Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit b12d869

Browse files
committed
finished InstallationAndUsage
1 parent f8b7326 commit b12d869

File tree

224 files changed

+85505
-97
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

224 files changed

+85505
-97
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Vue with NPM</title>
5+
</head>
6+
7+
<body>
8+
<script src="node_modules/dist/vue/vue.js"></script>
9+
10+
<div id="app">
11+
{{ hello }}
12+
</div>
13+
14+
<script>
15+
let app = new Vue({
16+
el: '#app',
17+
data: {
18+
hello: "Hello Vue!"
19+
}
20+
});
21+
</body>
22+
</html>

‎GettingStarted/InstallationAndUsage/1.1.B/info.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,5 @@ Refers to Chapter 1: Getting Started
55

66
Description: We learn to play around with Vue.js by referencing the Vue.js downloaded file inside a <script> tag. This is recommended for large scale applications. It pairs nicely with module bundlers like Webpack (will go over this later).
77

8-
Steps:
9-
1. In the console type: npm install vue
108

119
References: Vue.js Official Documentation - https://vuejs.org/v2/guide/installation.html

‎GettingStarted/InstallationAndUsage/1.1.B/node_modules/vue/LICENSE

Lines changed: 21 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎GettingStarted/InstallationAndUsage/1.1.B/node_modules/vue/README.md

Lines changed: 264 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /