<!-- Even though `42` is static, we need v-bind to tell Vue that --> <!-- this is a JavaScript expression rather than a string. --> <blog-postv-bind:likes="42"></blog-post>
<!-- Dynamically assign to the value of a variable. --> <blog-postv-bind:likes="post.likes"></blog-post>
<!-- Including the prop with no value will imply `true`. --> <blog-postis-published></blog-post>
<!-- Even though `false` is static, we need v-bind to tell Vue that --> <!-- this is a JavaScript expression rather than a string. --> <blog-postv-bind:is-published="false"></blog-post>
<!-- Dynamically assign to the value of a variable. --> <blog-postv-bind:is-published="post.isPublished"></blog-post>
<!-- Even though the array is static, we need v-bind to tell Vue that --> <!-- this is a JavaScript expression rather than a string. --> <blog-postv-bind:comment-ids="[234, 266, 273]"></blog-post>
<!-- Dynamically assign to the value of a variable. --> <blog-postv-bind:comment-ids="post.commentIds"></blog-post>
<!-- Even though the object is static, we need v-bind to tell Vue that --> <!-- this is a JavaScript expression rather than a string. --> <blog-post v-bind:author="{ name: 'Veronica', company: 'Veridian Dynamics' }" ></blog-post>
<!-- Dynamically assign to the value of a variable. --> <blog-postv-bind:author="post.author"></blog-post>