Skip to content

Instantly share code, notes, and snippets.

@andreipfeiffer
Created February 2, 2017 09:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andreipfeiffer/29600666feaaf292e70111d4c21227fa to your computer and use it in GitHub Desktop.
Save andreipfeiffer/29600666feaaf292e70111d4c21227fa to your computer and use it in GitHub Desktop.
// props declaration
export default {
props: ['name', 'age']
}
// props declaration, validation & default values
export default {
props: {
name: String,
age: { type: Number, default: 18 }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment