Try looking here: https://vuejs.org/v2/api/#Vue-extend. Just trace the value of $ with your IDE. I believe it is related to the mixin.
Jan 7, 2018
2
Level 7
What is $.extend in Spark js
As I work my way through Spark I'm trying to actually understand what i'm doing instead of just winging it :)
So in update-contact-information.js we have
data() {
return {
form: $.extend(true, new SparkForm({
name: '',
email: ''
}), Spark.forms.updateContactInformation)
};
},
I want to actually understand what $.extend means in this context ?
Level 53
Please or to participate in this conversation.