Skip to content

Instantly share code, notes, and snippets.

@rob1121
Created July 21, 2016 03:39
Show Gist options
  • Save rob1121/9b7a113a92bbf89a4ae287174f339ba6 to your computer and use it in GitHub Desktop.
Save rob1121/9b7a113a92bbf89a4ae287174f339ba6 to your computer and use it in GitHub Desktop.
set a value on data key same name as props key to declare default value of props
export default {
data() {
return {
size: "100px"
}
},
props: ['size']
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment