Skip to content

Commit

Permalink
Updated the cdn script with the latest version of Vue.js
Browse files Browse the repository at this point in the history
  • Loading branch information
joshua1988 committed Dec 9, 2017
1 parent 42318d1 commit 36465ac
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions 예제코드/03_뷰 시작하기/doit-vuejs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,17 @@
{{ message }}
</div>

<!-- <script src="https://unpkg.com/vue@2.4.4/dist/vue.js"></script> -->
<script src="vue.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vue@2.5.2/dist/vue.js"></script>
<!-- <script src="vue.js"></script> -->
<script>

new Vue({
el: '#app',
data: {
message: 'Hello Vue.js!'
}
})

</script>
</body>
</html>

0 comments on commit 36465ac

Please sign in to comment.