1. Mustache 구문
<span> 메시지 : {{ msg }} </span>
<span v-once> 변경 없는 메시지 : {{ msg }} </span>
{{ number + 1 }}
{{ ok ? 'yes' : 'no'}}
{{ message.split('').reverse().join('') }}
<div v-bind:id="'list-'+id"></div>
2. HTML 출력 구문
<p> mustaches 사용 : {{ rawHtml }} </p>
<p> 직접 html 사용 : <span v-html="rawHtml"></span></p>
3. 속성에는 v-bind
<div v-bind:id="dynamicId">
</div>
<button v-bind:disabled="isButtonDisabled">
Button
</button>
4. 디렉티브 (v- 접두사가 있는 속성)
- v-bind (속성 갱신)
- v-on (이벤트 수신)
- v-bind:[attributeName] (동적 속성 갱신 : 2.6.0 부터 가능)