vue js use props in data code example
Example 1: vue get props into data
props : {
users : Array,
currentuser: Number,
todoId : Number
},
mounted() {
this.current = this.currentuser
},
data(){
return{
current: null
}
Example 2: vuejs props
<script>
export default {
props: {
name: {
type: String,
required: true
}
}
};
</script>
<template>
<your-component name="name"></your-component>
</template>
Example 3: vuejs props
export default {
name: 'Camera',
props: ['name', 'img'],
}
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>