File tree 2 files changed +45
-0
lines changed
pages/course/chapter/[chapterSlug]/lesson
2 files changed +45
-0
lines changed Original file line number Diff line number Diff line change
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 >
Original file line number Diff line number Diff line change @@ -42,12 +42,26 @@ const chapter = computed(() => {
42
42
);
43
43
});
44
44
45
+ if (! chapter .value ) {
46
+ throw createError ({
47
+ statusCode: 404 ,
48
+ message: ' Chapter not found' ,
49
+ });
50
+ }
51
+
45
52
const lesson = computed (() => {
46
53
return chapter .value .lessons .find (
47
54
(lesson ) => lesson .slug === route .params .lessonSlug
48
55
);
49
56
});
50
57
58
+ if (! lesson .value ) {
59
+ throw createError ({
60
+ statusCode: 404 ,
61
+ message: ' Lesson not found' ,
62
+ });
63
+ }
64
+
51
65
const title = computed (() => {
52
66
return ` ${ lesson .value .title } - ${ course .title } ` ;
53
67
});
You can’t perform that action at this time.
0 commit comments