Skip to content

Instantly share code, notes, and snippets.

@velopert

velopert/app.js Secret

Created January 21, 2017 08:03
Show Gist options
  • Save velopert/03a1f799dd573647b011b93f17584b31 to your computer and use it in GitHub Desktop.
Save velopert/03a1f799dd573647b011b93f17584b31 to your computer and use it in GitHub Desktop.
// 새로운 뷰를 정의합니다
var app = new Vue({
el: '#app', // 어떤 엘리먼트에 적용을 할 지 정합니다
// data 는 해당 뷰에서 사용할 정보를 지닙니다
data: {
name: 'Vue'
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment