-
-
Save velopert/6fa4d4edfef33c7f38c1eaa1bd4e0cda to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var app = new Vue({ | |
el: '#app', | |
data: { | |
todos: [ | |
{ text: 'Vue.js 튜토리얼 작성하기' }, | |
{ text: 'Webpack2 알아보기' }, | |
{ text: '사이드 프로젝트 진행하기' } | |
] | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment