I'm curious both of this data function, is there any difference between this two.
I usually saw is
data () { return { obj } }
And ES6 fat arrow (=>
) which I typically used
data:()=>({ obj })
data # A function that returns the initial reactive state for the component instance. The function is expected to return a plain JavaScript object, which will be made reactive by Vue.
So what's the difference between props and data? Data is the private memory of each component where you can store any variables you need. Props are how you pass this data from a parent component down to a child component.
While you should not use arrow functions to define methods, it's fine to use them inside your methods as the this keyword will bind to the correct parent reference. const app = Vue.
js is a cross-platform and open-source back-end framework that executes JavaScript code on the server-side. Vue. js is a structural, open-source JavaScript framework that is used for building UIs and single-page applications.
No difference in your specific example, but there is a very important difference between those two notations, specially when it comes to Vue.js: the this
won't reflect the vue instance in arrow functions.
So if you ever have something like:
export default { props: ['stuffProp'], data: () => ({ myData: 'someData', myStuff: this.stuffProp }) }
It won't work as you expect. The this.stuffProp
won't get the stuffProp
prop's value (see below for more on the reason why).
Change the arrow function to, either (ES6/EcmaScript 2015 notation):
export default { props: ['stuffProp'], data() { // <== changed this line return { myData: 'someData', myStuff: this.stuffProp } } }
Or to (regular, ES5 and before, notation):
export default { props: ['stuffProp'], data: function() { // <== changed this line return { myData: 'someData', myStuff: this.stuffProp } } }
Don't use arrow functions (() => {}
) when declaring Vue methods. They pick up the this
from the current scope (possibly window
), and will not reflect the Vue instance.
From the API Docs:
Note that you should not use an arrow function with the
data
property (e.g.data: () => { return { a: this.myProp }}
). The reason is arrow functions bind the parent context, sothis
will not be the Vue instance as you expect andthis.myProp
will be undefined.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With