@@ -7,6 +7,66 @@ const routes: Array<any> = [
7
7
name : "Home" ,
8
8
component : Home ,
9
9
} ,
10
+ {
11
+ path : "/reactivity/ref" ,
12
+ name : "Ref" ,
13
+ component : ( ) => import ( "../views/reactivity/Ref.vue" ) ,
14
+ } ,
15
+ {
16
+ path : "/reactivity/reactive" ,
17
+ name : "Reactive" ,
18
+ component : ( ) => import ( "../views/reactivity/Reactive.vue" ) ,
19
+ } ,
20
+ {
21
+ path : "/reactivity/computed" ,
22
+ name : "Computed" ,
23
+ component : ( ) => import ( "../views/reactivity/Computed.vue" ) ,
24
+ } ,
25
+ {
26
+ path : "/reactivity/effect" ,
27
+ name : "Effect" ,
28
+ component : ( ) => import ( "../views/reactivity/Effect.vue" ) ,
29
+ } ,
30
+ {
31
+ path : "/reactivity/watch" ,
32
+ name : "Watch" ,
33
+ component : ( ) => import ( "../views/reactivity/Watch.vue" ) ,
34
+ } ,
35
+ {
36
+ path : "/reactivity/watchEffect" ,
37
+ name : "WatchEffect" ,
38
+ component : ( ) => import ( "../views/reactivity/WatchEffect.vue" ) ,
39
+ } ,
40
+ {
41
+ path : "/composition/setup" ,
42
+ name : "Setup" ,
43
+ component : ( ) => import ( "../views/composition/Setup.vue" ) ,
44
+ } ,
45
+ {
46
+ path : "/composition/lifecycle" ,
47
+ name : "Lifecycle" ,
48
+ component : ( ) => import ( "../views/composition/Lifecycle.vue" ) ,
49
+ } ,
50
+ {
51
+ path : "/composition/provide" ,
52
+ name : "Provide" ,
53
+ component : ( ) => import ( "../views/composition/Provide.vue" ) ,
54
+ } ,
55
+ {
56
+ path : "/composition/inject" ,
57
+ name : "Inject" ,
58
+ component : ( ) => import ( "../views/composition/Inject.vue" ) ,
59
+ } ,
60
+ {
61
+ path : "/composition/nextTick" ,
62
+ name : "NextTick" ,
63
+ component : ( ) => import ( "../views/composition/nextTick.vue" ) ,
64
+ } ,
65
+ {
66
+ path : "/composition/event" ,
67
+ name : "Event" ,
68
+ component : ( ) => import ( "../views/composition/Event.vue" ) ,
69
+ } ,
10
70
{
11
71
path : "/counter" ,
12
72
name : "Counter" ,
0 commit comments