Skip to content

Instantly share code, notes, and snippets.

@velopert

velopert/app.js Secret

Created January 27, 2017 05:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save velopert/6fa4d4edfef33c7f38c1eaa1bd4e0cda to your computer and use it in GitHub Desktop.
Save velopert/6fa4d4edfef33c7f38c1eaa1bd4e0cda to your computer and use it in GitHub Desktop.
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