-
-
Save velopert/a3615deef56538726a5f97c8c7ea3aa6 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 는 해당 뷰에서 사용할 정보를 지닙니다 | |
data: { | |
name: '<i>이탈릭</i>', | |
visible: true | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment