Skip to content

Commit 64b4ca9

Browse files
committed
3-5 Handling Server-Side Errors
1 parent 64e8fb2 commit 64b4ca9

File tree

2 files changed

+45
-0
lines changed

2 files changed

+45
-0
lines changed

error.vue

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<template>
2+
<NuxtLayout>
3+
<div class="prose">
4+
<h1>Dang</h1>
5+
<p>It looks like something broke.</p>
6+
<p>Sorry about that.</p>
7+
<p>
8+
<strong>{{ error.message }}</strong>
9+
</p>
10+
<p>
11+
Go to the
12+
<a
13+
class="hover:cursor-pointer"
14+
@click="handleError"
15+
>
16+
first lesson.
17+
</a>
18+
</p>
19+
</div>
20+
</NuxtLayout>
21+
</template>
22+
23+
<script setup>
24+
const error = useError();
25+
const handleError = () => {
26+
clearError({
27+
redirect:
28+
'/course/chapter/1-chapter-1/lesson/1-introduction-to-typescript-with-vue-js-3',
29+
});
30+
};
31+
</script>

pages/course/chapter/[chapterSlug]/lesson/[lessonSlug].vue

+14
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,26 @@ const chapter = computed(() => {
4242
);
4343
});
4444
45+
if (!chapter.value) {
46+
throw createError({
47+
statusCode: 404,
48+
message: 'Chapter not found',
49+
});
50+
}
51+
4552
const lesson = computed(() => {
4653
return chapter.value.lessons.find(
4754
(lesson) => lesson.slug === route.params.lessonSlug
4855
);
4956
});
5057
58+
if (!lesson.value) {
59+
throw createError({
60+
statusCode: 404,
61+
message: 'Lesson not found',
62+
});
63+
}
64+
5165
const title = computed(() => {
5266
return `${lesson.value.title} - ${course.title}`;
5367
});

0 commit comments

Comments
 (0)