Skip to content

Instantly share code, notes, and snippets.

@luiguild
Created July 14, 2021 13:43
Show Gist options
  • Save luiguild/62860b3a5fc9165987625ad32305fd74 to your computer and use it in GitHub Desktop.
Save luiguild/62860b3a5fc9165987625ad32305fd74 to your computer and use it in GitHub Desktop.
export default {
name: 'Page',
async asyncData (context) {
try {
let something = false
// some business logic
if (!something) return context.error({ statusCode: 404 })
return something
} catch (error) {
throw error
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment