March 06, 2020
데이터 바인딩은 HTML 화면 요소를 뷰 인스턴스의 데이터와 연결하는 것
<div id="app"> {{text}} </div> <script> new Vue({ el: '#app', data: { text: 'Hello World!', }, }) </script>
<div id="app" v-once> {{ text }} </div>
InstagramGitHubTwitterLinkedIn