Skip to content

Instantly share code, notes, and snippets.

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