Skip to content

Instantly share code, notes, and snippets.

@Jexordexan
Created August 6, 2019 21:36
Show Gist options
  • Save Jexordexan/2a119d6be411f84b35bc607311dad64f to your computer and use it in GitHub Desktop.
Save Jexordexan/2a119d6be411f84b35bc607311dad64f to your computer and use it in GitHub Desktop.
export default createComponent({
name: "UserAlerts",
props: {
user: Object,
alerts: Array,
},
setup(props) {
// Typescript automatically infers typeof 'props' to be:
// {
// user: ObjectConstructor,
// alerts: ArrayConstructor,
// }
},
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment