Skip to content

Commit 613eaf7

Browse files
committedMar 14, 2018
update vue.js
1 parent 7594f7a commit 613eaf7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎01.GettingStarted/simple-demo.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
</table>
5555
</div>
5656
</body>
57-
<script src="js/vue.js"></script>
57+
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
5858
<script>
5959
var vm = new Vue({
6060
el: '#app',

‎01.GettingStarted/v-show.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ <h1 v-show="age >= 25">Age: {{ age }}</h1>
1313
<h1 v-show="name.indexOf('jack') >= 0">Name: {{ name }}</h1>
1414
</div>
1515
</body>
16-
<script src="js/vue.js"></script>
16+
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
1717
<script>
1818

1919
var vm = new Vue({

0 commit comments

Comments
 (0)
Please sign in to comment.