vuejs props in component code example
Example 1: vuejs props
<script>
export default {
props: {
name: {
type: String,
required: true
}
}
};
</script>
<template>
<your-component name="name"></your-component>
</template>
Example 2: vue prop string or number
props: {
users_count: {
type: [Number, String],
required: true
}
},
Example 3: vue js props
Vue.component('blog-post', {
props: ['postTitle'],
template: '<h3>{{ postTitle }}</h3>'
})
<!-- kebab-case in HTML -->
<blog-post post-title="hello!"></blog-post>
Example 4: vue passing props
<!-- Dynamically assign the value of a variable -->
<blog-post v-bind:title="post.title"></blog-post>
<!-- Dynamically assign the value of a complex expression -->
<blog-post
v-bind:title="post.title + ' by ' + post.author.name"
></blog-post>