Created
February 2, 2017 09:44
-
-
Save andreipfeiffer/29600666feaaf292e70111d4c21227fa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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