1 props: {
2 title: String,
3 default: function () {
4 return "John Doe";
5 },
6 },
1<!-- Dynamically assign the value of a variable -->
2<blog-post v-bind:title="post.title"></blog-post>
3
4<!-- Dynamically assign the value of a complex expression -->
5<blog-post
6 v-bind:title="post.title + ' by ' + post.author.name"
7></blog-post>