createError
You can use this function to create an error object with additional metadata. It is usable in both the Vue and Nitro portions of your app, and is meant to be thrown.
Parameters:
If you throw an error created with createError
:
clearError
.fatal: true
.<script setup>const route = useRoute()const { data } = await useFetch(`/api/movies/${route.params.slug}`)if (!data.value) { throw createError({ statusCode: 404, statusMessage: 'Page Not Found' })}</script>
Use createError
to trigger error handling in server API routes.
export default eventHandler(() => { throw createError({ statusCode: 404, statusMessage: 'Page Not Found' })}