Monday, May 20, 2024
 Popular · Latest · Hot · Upcoming
1
rated 0 times [  4] [ 3]  / answers: 1 / hits: 136885  / 8 Years ago, thu, november 3, 2016, 12:00:00

So I want to pass props to an Vue component, but I expect these props to change in future from inside that component e.g. when I update that Vue component from inside using AJAX. So they are only for initialization of component.



My cars-list Vue component element where I pass props with initial properties to single-car:



// cars-list.vue

<script>
export default {
data: function() {
return {
cars: [
{
color: 'red',
maxSpeed: 200,
},
{
color: 'blue',
maxSpeed: 195,
},
]
}
},
}
</script>

<template>
<div>
<template v-for=car in cars>
<single-car :initial-properties=car></single-car>
</template>
</div>
</template>


The way I do it right now it that inside my single-car component I'm assigning this.initialProperties to my this.data.properties on created() initialization hook. And it works and is reactive.



// single-car.vue

<script>
export default {
data: function() {
return {
properties: {},
}
},
created: function(){
this.data.properties = this.initialProperties;
},
}
</script>

<template>
<div>Car is in {{properties.color}} and has a max speed of {{properties.maxSpeed}}</div>
</template>


But my problem with that is that I don't know if that's a correct way to do it? Won't it cause me some troubles along the road? Or is there a better way to do it?


More From » vue.js

 Answers
15

Thanks to this https://github.com/vuejs/vuejs.org/pull/567 I know the answer now.


Method 1


Pass initial prop directly to the data. Like the example in updated docs:


props: ['initialCounter'],
data: function () {
return {
counter: this.initialCounter
}
}

But have in mind if the passed prop is an object or array that is used in the parent component state any modification to that prop will result in the change in that parent component state.


Warning: this method is not recommended. It will make your components unpredictable. If you need to set parent data from child components either use state management like Vuex or use "v-model". https://v2.vuejs.org/v2/guide/components.html#Using-v-model-on-Components


Method 2


If your initial prop is an object or array and if you don't want changes in children state propagate to parent state then just use e.g. Vue.util.extend [1] to make a copy of the props instead pointing it directly to children data, like this:


props: ['initialCounter'],
data: function () {
return {
counter: Vue.util.extend({}, this.initialCounter)
}
}

Method 3


You can also use spread operator to clone the props. More details in the Igor answer: https://stackoverflow.com/a/51911118/3143704


But have in mind that spread operators are not supported in older browsers and for better compatibility you'll need to transpile the code e.g. using babel.


Footnotes


[1] Have in mind this is an internal Vue utility and it may change with new versions. You might want to use other methods to copy that prop, see How do I correctly clone a JavaScript object?.


My fiddle where I was testing it:
https://jsfiddle.net/sm4kx7p9/3/


[#60192] Tuesday, November 1, 2016, 8 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
kylee

Total Points: 60
Total Questions: 119
Total Answers: 101

Location: Bonaire
Member since Wed, Mar 29, 2023
1 Year ago
;