Skip to content

Instantly share code, notes, and snippets.

@orue
Created April 2, 2020 07:21
Show Gist options
  • Save orue/038eab8e7d4d39da6c1ab030cf067ab2 to your computer and use it in GitHub Desktop.
Save orue/038eab8e7d4d39da6c1ab030cf067ab2 to your computer and use it in GitHub Desktop.
Use Array/Object in props as default value
date: {
type: Date,
required: false,
default: function(){return new Date()}
}
//or ES6
default: () =>new Date()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment