PsHooN7979
08-13
240813 박세훈 오답노트 UI 추가
@0b458a9bc4e7fd0129d404f79f5030e24e4315d6
--- client/views/pages/AppRouter.js
+++ client/views/pages/AppRouter.js
... | ... | @@ -1,19 +1,20 @@ |
1 | 1 |
import { createWebHistory, createRouter } from "vue-router"; |
2 | 2 |
|
3 | 3 |
// import App from "../App.vue"; |
4 |
-import login from "../Login.vue" |
|
5 |
-import Join from "../Join.vue" |
|
6 |
-import MyPage from './main/MyPage.vue'; |
|
7 |
-import MyPlan from './main/MyPlan.vue'; |
|
8 |
-import MyPlan2 from './main/MyPlan2.vue'; |
|
9 |
-import PhotoBook from './main/PhotoBook.vue'; |
|
10 |
-import Dashboard from './main/Dashboard.vue'; |
|
11 |
-import AIDashboard from './main/AIDashboard.vue'; |
|
12 |
-import Camera from "./main/Camera.vue" |
|
13 |
-import PhotoDesign from "./main/PhotoDesign.vue" |
|
14 |
-import PhotoEdit from "./main/PhotoEdit.vue" |
|
15 |
-import PreviewNote from './main/PreviewNote.vue'; |
|
4 |
+import login from "../Login.vue"; |
|
5 |
+import Join from "../Join.vue"; |
|
6 |
+import MyPage from "./main/MyPage.vue"; |
|
7 |
+import MyPlan from "./main/MyPlan.vue"; |
|
8 |
+import MyPlan2 from "./main/MyPlan2.vue"; |
|
9 |
+import PhotoBook from "./main/PhotoBook.vue"; |
|
10 |
+import Dashboard from "./main/Dashboard.vue"; |
|
11 |
+import AIDashboard from "./main/AIDashboard.vue"; |
|
12 |
+import Camera from "./main/Camera.vue"; |
|
13 |
+import PhotoDesign from "./main/PhotoDesign.vue"; |
|
14 |
+import PhotoEdit from "./main/PhotoEdit.vue"; |
|
15 |
+import PreviewNote from "./main/PreviewNote.vue"; |
|
16 | 16 |
import Main from "./main/Main.vue"; |
17 |
+import Main_c from "./main/Main_c.vue"; |
|
17 | 18 |
import Chapter1 from "./main/Chapter/Chapter1.vue"; |
18 | 19 |
import Chapter1_1 from "./main/Chapter/Chapter1_1.vue"; |
19 | 20 |
import Chapter1_2 from "./main/Chapter/Chapter1_2.vue"; |
... | ... | @@ -96,9 +97,9 @@ |
96 | 97 |
import RoadMap from "./teacher/RoadMap.vue"; |
97 | 98 |
|
98 | 99 |
const routes = [ |
99 |
- { path: '/login.page', name: 'login', component: login }, |
|
100 |
- { path: '/Join.page', name: 'Join', component: Join }, |
|
101 |
- |
|
100 |
+ { path: "/login.page", name: "login", component: login }, |
|
101 |
+ { path: "/Join.page", name: "Join", component: Join }, |
|
102 |
+ |
|
102 | 103 |
// { path: '/App.page', name: 'App', component: App, |
103 | 104 |
// children:[ |
104 | 105 |
// ] |
... | ... | @@ -106,115 +107,304 @@ |
106 | 107 |
// { path: '/Main.page', name: 'Main', component: Main}, |
107 | 108 |
/* 학생 */ |
108 | 109 |
{ |
109 |
- path: '/', |
|
110 |
- name: 'Main', |
|
110 |
+ path: "/", |
|
111 |
+ name: "Main", |
|
111 | 112 |
component: Main, |
112 | 113 |
children: [ |
113 |
- { path: '/Dashboard.page', name: 'Dashboard', component: Dashboard }, |
|
114 |
- { path: '/AIDashboard.page', name: 'AIDashboard', component: AIDashboard }, |
|
115 |
- { path: '/MyPage.page', name: 'MyPage', component: MyPage }, |
|
116 |
- { path: '/MyPlan.page', name: 'MyPlan', component: MyPlan }, |
|
117 |
- { path: '/MyPlan2.page', name: 'MyPlan2', component: MyPlan2 }, |
|
118 |
- { path: '/PhotoBook.page', name: 'PhotoBook', component: PhotoBook }, |
|
119 |
- { path: '/PreviewNote.page', name: 'PreviewNote', component: PreviewNote }, |
|
120 |
- ] |
|
114 |
+ { |
|
115 |
+ path: "/Dashboard.page", |
|
116 |
+ name: "Dashboard", |
|
117 |
+ component: Dashboard, |
|
118 |
+ }, |
|
119 |
+ { path: "/MyPage.page", name: "MyPage", component: MyPage }, |
|
120 |
+ { path: "/MyPlan.page", name: "MyPlan", component: MyPlan }, |
|
121 |
+ { path: "/MyPlan2.page", name: "MyPlan2", component: MyPlan2 }, |
|
122 |
+ { |
|
123 |
+ path: "/PhotoBook.page", |
|
124 |
+ name: "PhotoBook", |
|
125 |
+ component: PhotoBook, |
|
126 |
+ }, |
|
127 |
+ { |
|
128 |
+ path: "/PreviewNote.page", |
|
129 |
+ name: "PreviewNote", |
|
130 |
+ component: PreviewNote, |
|
131 |
+ }, |
|
132 |
+ ], |
|
121 | 133 |
}, |
122 |
- { path: '/Camera.page', name: 'Camera', component: Camera }, |
|
123 |
- { path: '/PhotoDesign.page', name: 'PhotoDesign', component: PhotoDesign }, |
|
124 |
- { path: '/PhotoEdit.page', name: 'PhotoEdit', component: PhotoEdit }, |
|
134 |
+ { path: "/Camera.page", name: "Camera", component: Camera }, |
|
135 |
+ { path: "/PhotoDesign.page", name: "PhotoDesign", component: PhotoDesign }, |
|
136 |
+ { path: "/PhotoEdit.page", name: "PhotoEdit", component: PhotoEdit }, |
|
125 | 137 |
/* 지문 */ |
126 |
- { path: '/Chapter1.page', name: 'Chapter1', component: Chapter1 }, |
|
127 |
- { path: '/Chapter1_1.page', name: 'Chapter1_1', component: Chapter1_1 }, |
|
128 |
- { path: '/Chapter1_2.page', name: 'Chapter1_2', component: Chapter1_2 }, |
|
129 |
- { path: '/Chapter1_3.page', name: 'Chapter1_3', component: Chapter1_3 }, |
|
138 |
+ { path: "/Chapter1.page", name: "Chapter1", component: Chapter1 }, |
|
139 |
+ { path: "/Chapter1_1.page", name: "Chapter1_1", component: Chapter1_1 }, |
|
140 |
+ { path: "/Chapter1_2.page", name: "Chapter1_2", component: Chapter1_2 }, |
|
141 |
+ { path: "/Chapter1_3.page", name: "Chapter1_3", component: Chapter1_3 }, |
|
130 | 142 |
|
131 | 143 |
/* 단어장 및 지문 문제 */ |
132 |
- { path: '/Chapter2.page', name: 'Chapter2', component: Chapter2 }, |
|
133 |
- { path: '/Chapter2_1.page', name: 'Chapter2_1', component: Chapter2_1 }, |
|
134 |
- { path: '/Chapter2_2.page', name: 'Chapter2_2', component: Chapter2_2 }, |
|
135 |
- { path: '/Chapter2_3.page', name: 'Chapter2_3', component: Chapter2_3 }, |
|
136 |
- { path: '/Chapter2_4.page', name: 'Chapter2_4', component: Chapter2_4 }, |
|
137 |
- { path: '/Chapter2_5.page', name: 'Chapter2_5', component: Chapter2_5 }, |
|
138 |
- { path: '/Chapter2_6.page', name: 'Chapter2_6', component: Chapter2_6 }, |
|
139 |
- { path: '/Chapter2_7.page', name: 'Chapter2_7', component: Chapter2_7 }, |
|
140 |
- { path: '/Chapter2_8.page', name: 'Chapter2_8', component: Chapter2_8 }, |
|
141 |
- { path: '/Chapter2_9.page', name: 'Chapter2_9', component: Chapter2_9 }, |
|
142 |
- { path: '/Chapter2_10.page', name: 'Chapter2_10', component: Chapter2_10 }, |
|
143 |
- { path: '/Chapter2_11.page', name: 'Chapter2_11', component: Chapter2_11 }, |
|
144 |
- { path: '/Chapter2_12.page', name: 'Chapter2_12', component: Chapter2_12 }, |
|
145 |
- { path: '/Chapter2_13.page', name: 'Chapter2_13', component: Chapter2_13 }, |
|
144 |
+ { path: "/Chapter2.page", name: "Chapter2", component: Chapter2 }, |
|
145 |
+ { path: "/Chapter2_1.page", name: "Chapter2_1", component: Chapter2_1 }, |
|
146 |
+ { path: "/Chapter2_2.page", name: "Chapter2_2", component: Chapter2_2 }, |
|
147 |
+ { path: "/Chapter2_3.page", name: "Chapter2_3", component: Chapter2_3 }, |
|
148 |
+ { path: "/Chapter2_4.page", name: "Chapter2_4", component: Chapter2_4 }, |
|
149 |
+ { path: "/Chapter2_5.page", name: "Chapter2_5", component: Chapter2_5 }, |
|
150 |
+ { path: "/Chapter2_6.page", name: "Chapter2_6", component: Chapter2_6 }, |
|
151 |
+ { path: "/Chapter2_7.page", name: "Chapter2_7", component: Chapter2_7 }, |
|
152 |
+ { path: "/Chapter2_8.page", name: "Chapter2_8", component: Chapter2_8 }, |
|
153 |
+ { path: "/Chapter2_9.page", name: "Chapter2_9", component: Chapter2_9 }, |
|
154 |
+ { path: "/Chapter2_10.page", name: "Chapter2_10", component: Chapter2_10 }, |
|
155 |
+ { path: "/Chapter2_11.page", name: "Chapter2_11", component: Chapter2_11 }, |
|
156 |
+ { path: "/Chapter2_12.page", name: "Chapter2_12", component: Chapter2_12 }, |
|
157 |
+ { path: "/Chapter2_13.page", name: "Chapter2_13", component: Chapter2_13 }, |
|
146 | 158 |
|
147 | 159 |
/* 평가 문제 */ |
148 |
- { path: '/Chapter3.page', name: 'Chapter3', component: Chapter3 }, |
|
149 |
- { path: '/Chapter3_1.page', name: 'Chapter3_1', component: Chapter3_1 }, |
|
150 |
- { path: '/Chapter3_2.page', name: 'Chapter3_2', component: Chapter3_2 }, |
|
151 |
- { path: '/Chapter3_3.page', name: 'Chapter3_3', component: Chapter3_3 }, |
|
152 |
- { path: '/Chapter3_3_1.page', name: 'Chapter3_3_1', component: Chapter3_3_1 }, |
|
153 |
- { path: '/Chapter3_4.page', name: 'Chapter3_4', component: Chapter3_4 }, |
|
154 |
- { path: '/Chapter3_5.page', name: 'Chapter3_5', component: Chapter3_5 }, |
|
155 |
- { path: '/Chapter3_6.page', name: 'Chapter3_6', component: Chapter3_6 }, |
|
156 |
- { path: '/Chapter3_7.page', name: 'Chapter3_7', component: Chapter3_7 }, |
|
157 |
- { path: '/Chapter3_8.page', name: 'Chapter3_8', component: Chapter3_8 }, |
|
158 |
- { path: '/Chapter3_9.page', name: 'Chapter3_9', component: Chapter3_9 }, |
|
159 |
- { path: '/Chapter3_10.page', name: 'Chapter3_10', component: Chapter3_10 }, |
|
160 |
- { path: '/Chapter3_11.page', name: 'Chapter3_11', component: Chapter3_11 }, |
|
161 |
- { path: '/Chapter3_12.page', name: 'Chapter3_12', component: Chapter3_12 }, |
|
162 |
- { path: '/Chapter3_13.page', name: 'Chapter3_13', component: Chapter3_13 }, |
|
163 |
- { path: '/Chapter3_14.page', name: 'Chapter3_14', component: Chapter3_14 }, |
|
164 |
- { path: '/Chapter3_15.page', name: 'Chapter3_15', component: Chapter3_15 }, |
|
160 |
+ { |
|
161 |
+ path: "/Main_c.page", |
|
162 |
+ name: "Main_c", |
|
163 |
+ component: Main_c, |
|
164 |
+ children: [ |
|
165 |
+ { path: "/Chapter3.page", name: "Chapter3", component: Chapter3 }, |
|
166 |
+ { |
|
167 |
+ path: "/Chapter3_1.page", |
|
168 |
+ name: "Chapter3_1", |
|
169 |
+ component: Chapter3_1, |
|
170 |
+ }, |
|
171 |
+ { |
|
172 |
+ path: "/Chapter3_2.page", |
|
173 |
+ name: "Chapter3_2", |
|
174 |
+ component: Chapter3_2, |
|
175 |
+ }, |
|
176 |
+ { |
|
177 |
+ path: "/Chapter3_3.page", |
|
178 |
+ name: "Chapter3_3", |
|
179 |
+ component: Chapter3_3, |
|
180 |
+ }, |
|
181 |
+ { |
|
182 |
+ path: "/Chapter3_3_1.page", |
|
183 |
+ name: "Chapter3_3_1", |
|
184 |
+ component: Chapter3_3_1, |
|
185 |
+ }, |
|
186 |
+ { |
|
187 |
+ path: "/Chapter3_4.page", |
|
188 |
+ name: "Chapter3_4", |
|
189 |
+ component: Chapter3_4, |
|
190 |
+ }, |
|
191 |
+ { |
|
192 |
+ path: "/Chapter3_5.page", |
|
193 |
+ name: "Chapter3_5", |
|
194 |
+ component: Chapter3_5, |
|
195 |
+ }, |
|
196 |
+ { |
|
197 |
+ path: "/Chapter3_6.page", |
|
198 |
+ name: "Chapter3_6", |
|
199 |
+ component: Chapter3_6, |
|
200 |
+ }, |
|
201 |
+ { |
|
202 |
+ path: "/Chapter3_7.page", |
|
203 |
+ name: "Chapter3_7", |
|
204 |
+ component: Chapter3_7, |
|
205 |
+ }, |
|
206 |
+ { |
|
207 |
+ path: "/Chapter3_8.page", |
|
208 |
+ name: "Chapter3_8", |
|
209 |
+ component: Chapter3_8, |
|
210 |
+ }, |
|
211 |
+ { |
|
212 |
+ path: "/Chapter3_9.page", |
|
213 |
+ name: "Chapter3_9", |
|
214 |
+ component: Chapter3_9, |
|
215 |
+ }, |
|
216 |
+ { |
|
217 |
+ path: "/Chapter3_10.page", |
|
218 |
+ name: "Chapter3_10", |
|
219 |
+ component: Chapter3_10, |
|
220 |
+ }, |
|
221 |
+ { |
|
222 |
+ path: "/Chapter3_11.page", |
|
223 |
+ name: "Chapter3_11", |
|
224 |
+ component: Chapter3_11, |
|
225 |
+ }, |
|
226 |
+ { |
|
227 |
+ path: "/Chapter3_12.page", |
|
228 |
+ name: "Chapter3_12", |
|
229 |
+ component: Chapter3_12, |
|
230 |
+ }, |
|
231 |
+ { |
|
232 |
+ path: "/Chapter3_13.page", |
|
233 |
+ name: "Chapter3_13", |
|
234 |
+ component: Chapter3_13, |
|
235 |
+ }, |
|
236 |
+ { |
|
237 |
+ path: "/Chapter3_14.page", |
|
238 |
+ name: "Chapter3_14", |
|
239 |
+ component: Chapter3_14, |
|
240 |
+ }, |
|
241 |
+ { |
|
242 |
+ path: "/Chapter3_15.page", |
|
243 |
+ name: "Chapter3_15", |
|
244 |
+ component: Chapter3_15, |
|
245 |
+ }, |
|
246 |
+ ], |
|
247 |
+ }, |
|
165 | 248 |
/* 설문 조사 페이지*/ |
166 |
- { path: '/Chapter3_16.page', name: 'Chapter3_16', component: Chapter3_16 }, |
|
167 |
-/* 평가 결과 페이지*/ |
|
168 |
- { path: '/Chapter4.page', name: 'Chapter4', component: Chapter4 }, |
|
249 |
+ { path: "/Chapter3_16.page", name: "Chapter3_16", component: Chapter3_16 }, |
|
250 |
+ /* 평가 결과 페이지*/ |
|
251 |
+ { path: "/Chapter4.page", name: "Chapter4", component: Chapter4 }, |
|
169 | 252 |
|
170 |
- { path: '/Chapter5.page', name: 'Chapter5', component: Chapter5 }, |
|
171 |
- { path: '/Chapter6.page', name: 'Chapter6', component: Chapter6 }, |
|
172 |
- { path: '/Chapter7.page', name: 'Chapter7', component: Chapter7 }, |
|
173 |
- { path: '/Chapter8.page', name: 'Chapter8', component: Chapter8 }, |
|
174 |
- { path: '/Chapter9.page', name: 'Chapter9', component: Chapter9 }, |
|
175 |
- { path: '/Chapter10.page', name: 'Chapter10', component: Chapter10 }, |
|
176 |
- { path: '/Chapter11.page', name: 'Chapter11', component: Chapter11 }, |
|
253 |
+ { path: "/Chapter5.page", name: "Chapter5", component: Chapter5 }, |
|
254 |
+ { path: "/Chapter6.page", name: "Chapter6", component: Chapter6 }, |
|
255 |
+ { path: "/Chapter7.page", name: "Chapter7", component: Chapter7 }, |
|
256 |
+ { path: "/Chapter8.page", name: "Chapter8", component: Chapter8 }, |
|
257 |
+ { path: "/Chapter9.page", name: "Chapter9", component: Chapter9 }, |
|
258 |
+ { path: "/Chapter10.page", name: "Chapter10", component: Chapter10 }, |
|
259 |
+ { path: "/Chapter11.page", name: "Chapter11", component: Chapter11 }, |
|
177 | 260 |
|
178 | 261 |
/* 부모님 */ |
179 |
- { path: '/Main_p.page', name: 'Main_p', component: Main_p }, |
|
262 |
+ { path: "/Main_p.page", name: "Main_p", component: Main_p }, |
|
180 | 263 |
/* 선생님 */ |
181 |
- { path: '/Main_t.page', name: 'Main_t', component: Main_t , |
|
264 |
+ { |
|
265 |
+ path: "/Main_t.page", |
|
266 |
+ name: "Main_t", |
|
267 |
+ component: Main_t, |
|
182 | 268 |
children: [ |
183 |
- { path: '/Board.page', name: 'Board', component: Board }, |
|
184 |
- { path: '/noticeInsert.page', name: 'noticeInsert', component: noticeInsert }, |
|
185 |
- { path: '/noticeDetail.page', name: 'noticeDetail', component: noticeDetail }, |
|
186 |
- { path: '/Home.page', name: 'Home', component: Home }, |
|
187 |
- { path: '/ClassDetail.page', name: 'ClassDetail', component: ClassDetail }, |
|
188 |
- { path: '/StudentList.page', name: 'StudentList', component: StudentList }, |
|
189 |
- { path: '/StudentDetail.page', name: 'StudentDetail', component: StudentDetail }, |
|
190 |
- { path: '/C_Textbook.page', name: 'C_Textbook', component: C_Textbook }, |
|
191 |
- { path: '/textbook.page', name: 'textbook', component: textbook }, |
|
192 |
- { path: '/TextBookDetail.page', name: 'TextBookDetail', component: TextBookDetail }, |
|
193 |
- { path: '/C_TextBookDetail.page', name: 'C_TextBookDetail', component: C_TextBookDetail }, |
|
194 |
- { path: '/TextList.page', name: 'TextList', component: TextList }, |
|
195 |
- { path: '/TextInsert.page', name: 'TextInsert', component: TextInsert }, |
|
196 |
- { path: '/TextDetail.page', name: 'TextDetail', component: TextDetail }, |
|
197 |
- { path: '/QuestionList.page', name: 'QuestionList', component: QuestionList }, |
|
198 |
- { path: '/QuestionInsert.page', name: 'QuestionInsert', component: QuestionInsert }, |
|
199 |
- { path: '/QuestionDetail.page', name: 'QuestionDetail', component: QuestionDetail }, |
|
200 |
- { path: '/VocaList.page', name: 'VocaList', component: VocaList }, |
|
201 |
- { path: '/VocaInsert.page', name: 'VocaInsert', component: VocaInsert }, |
|
202 |
- { path: '/VocaDetail.page', name: 'VocaDetail', component: VocaDetail }, |
|
203 |
- { path: '/ExamList.page', name: 'ExamList', component: ExamList }, |
|
204 |
- { path: '/ExamDetail.page', name: 'ExamDetail', component: ExamDetail }, |
|
205 |
- { path: '/ExamInsert.page', name: 'ExamInsert', component: ExamInsert }, |
|
206 |
- { path: '/C_TextList.page', name: 'C_TextList', component: C_TextList }, |
|
207 |
- { path: '/C_TextInsert.page', name: 'C_TextInsert', component: C_TextInsert }, |
|
208 |
- { path: '/C_QuestionList.page', name: 'C_QuestionList', component: C_QuestionList }, |
|
209 |
- { path: '/C_QuestionInsert.page', name: 'C_QuestionInsert', component: C_QuestionInsert }, |
|
210 |
- { path: '/C_Voca_List.page', name: 'C_Voca_List', component: C_Voca_List }, |
|
211 |
- { path: '/C_ExamList.page', name: 'C_ExamList', component: C_ExamList }, |
|
212 |
- { path: '/C_ExamDetail.page', name: 'C_ExamDetail', component: C_ExamDetail }, |
|
213 |
- { path: '/C_ExamInsert.page', name: 'C_ExamInsert', component: C_ExamInsert }, |
|
214 |
- |
|
215 |
- { path: '/RoadMap.page', name: 'RoadMap', component: RoadMap }, |
|
216 |
- |
|
217 |
- { path: '/TextDetail.page', name: 'TextDetail', component: TextDetail }, |
|
269 |
+ { path: "/Board.page", name: "Board", component: Board }, |
|
270 |
+ { |
|
271 |
+ path: "/noticeInsert.page", |
|
272 |
+ name: "noticeInsert", |
|
273 |
+ component: noticeInsert, |
|
274 |
+ }, |
|
275 |
+ { |
|
276 |
+ path: "/noticeDetail.page", |
|
277 |
+ name: "noticeDetail", |
|
278 |
+ component: noticeDetail, |
|
279 |
+ }, |
|
280 |
+ { path: "/Home.page", name: "Home", component: Home }, |
|
281 |
+ { |
|
282 |
+ path: "/ClassDetail.page", |
|
283 |
+ name: "ClassDetail", |
|
284 |
+ component: ClassDetail, |
|
285 |
+ }, |
|
286 |
+ { |
|
287 |
+ path: "/StudentList.page", |
|
288 |
+ name: "StudentList", |
|
289 |
+ component: StudentList, |
|
290 |
+ }, |
|
291 |
+ { |
|
292 |
+ path: "/StudentDetail.page", |
|
293 |
+ name: "StudentDetail", |
|
294 |
+ component: StudentDetail, |
|
295 |
+ }, |
|
296 |
+ { |
|
297 |
+ path: "/C_Textbook.page", |
|
298 |
+ name: "C_Textbook", |
|
299 |
+ component: C_Textbook, |
|
300 |
+ }, |
|
301 |
+ { path: "/textbook.page", name: "textbook", component: textbook }, |
|
302 |
+ { |
|
303 |
+ path: "/TextBookDetail.page", |
|
304 |
+ name: "TextBookDetail", |
|
305 |
+ component: TextBookDetail, |
|
306 |
+ }, |
|
307 |
+ { |
|
308 |
+ path: "/C_TextBookDetail.page", |
|
309 |
+ name: "C_TextBookDetail", |
|
310 |
+ component: C_TextBookDetail, |
|
311 |
+ }, |
|
312 |
+ { path: "/TextList.page", name: "TextList", component: TextList }, |
|
313 |
+ { |
|
314 |
+ path: "/TextInsert.page", |
|
315 |
+ name: "TextInsert", |
|
316 |
+ component: TextInsert, |
|
317 |
+ }, |
|
318 |
+ { |
|
319 |
+ path: "/TextDetail.page", |
|
320 |
+ name: "TextDetail", |
|
321 |
+ component: TextDetail, |
|
322 |
+ }, |
|
323 |
+ { |
|
324 |
+ path: "/QuestionList.page", |
|
325 |
+ name: "QuestionList", |
|
326 |
+ component: QuestionList, |
|
327 |
+ }, |
|
328 |
+ { |
|
329 |
+ path: "/QuestionInsert.page", |
|
330 |
+ name: "QuestionInsert", |
|
331 |
+ component: QuestionInsert, |
|
332 |
+ }, |
|
333 |
+ { |
|
334 |
+ path: "/QuestionDetail.page", |
|
335 |
+ name: "QuestionDetail", |
|
336 |
+ component: QuestionDetail, |
|
337 |
+ }, |
|
338 |
+ { path: "/VocaList.page", name: "VocaList", component: VocaList }, |
|
339 |
+ { |
|
340 |
+ path: "/VocaInsert.page", |
|
341 |
+ name: "VocaInsert", |
|
342 |
+ component: VocaInsert, |
|
343 |
+ }, |
|
344 |
+ { |
|
345 |
+ path: "/VocaDetail.page", |
|
346 |
+ name: "VocaDetail", |
|
347 |
+ component: VocaDetail, |
|
348 |
+ }, |
|
349 |
+ { path: "/ExamList.page", name: "ExamList", component: ExamList }, |
|
350 |
+ { |
|
351 |
+ path: "/ExamDetail.page", |
|
352 |
+ name: "ExamDetail", |
|
353 |
+ component: ExamDetail, |
|
354 |
+ }, |
|
355 |
+ { |
|
356 |
+ path: "/ExamInsert.page", |
|
357 |
+ name: "ExamInsert", |
|
358 |
+ component: ExamInsert, |
|
359 |
+ }, |
|
360 |
+ { |
|
361 |
+ path: "/C_TextList.page", |
|
362 |
+ name: "C_TextList", |
|
363 |
+ component: C_TextList, |
|
364 |
+ }, |
|
365 |
+ { |
|
366 |
+ path: "/C_TextInsert.page", |
|
367 |
+ name: "C_TextInsert", |
|
368 |
+ component: C_TextInsert, |
|
369 |
+ }, |
|
370 |
+ { |
|
371 |
+ path: "/C_QuestionList.page", |
|
372 |
+ name: "C_QuestionList", |
|
373 |
+ component: C_QuestionList, |
|
374 |
+ }, |
|
375 |
+ { |
|
376 |
+ path: "/C_QuestionInsert.page", |
|
377 |
+ name: "C_QuestionInsert", |
|
378 |
+ component: C_QuestionInsert, |
|
379 |
+ }, |
|
380 |
+ { |
|
381 |
+ path: "/C_Voca_List.page", |
|
382 |
+ name: "C_Voca_List", |
|
383 |
+ component: C_Voca_List, |
|
384 |
+ }, |
|
385 |
+ { |
|
386 |
+ path: "/C_ExamList.page", |
|
387 |
+ name: "C_ExamList", |
|
388 |
+ component: C_ExamList, |
|
389 |
+ }, |
|
390 |
+ { |
|
391 |
+ path: "/C_ExamDetail.page", |
|
392 |
+ name: "C_ExamDetail", |
|
393 |
+ component: C_ExamDetail, |
|
394 |
+ }, |
|
395 |
+ { |
|
396 |
+ path: "/C_ExamInsert.page", |
|
397 |
+ name: "C_ExamInsert", |
|
398 |
+ component: C_ExamInsert, |
|
399 |
+ }, |
|
400 |
+ |
|
401 |
+ { path: "/RoadMap.page", name: "RoadMap", component: RoadMap }, |
|
402 |
+ |
|
403 |
+ { |
|
404 |
+ path: "/TextDetail.page", |
|
405 |
+ name: "TextDetail", |
|
406 |
+ component: TextDetail, |
|
407 |
+ }, |
|
218 | 408 |
], |
219 | 409 |
}, |
220 | 410 |
]; |
... | ... | @@ -224,4 +414,4 @@ |
224 | 414 |
routes, |
225 | 415 |
}); |
226 | 416 |
|
227 |
-export default AppRouter;(파일 끝에 줄바꿈 문자 없음) |
|
417 |
+export default AppRouter; |
+++ client/views/pages/main/Main_c.vue
... | ... | @@ -0,0 +1,27 @@ |
1 | +<template> | |
2 | + <router-view /> | |
3 | + <Footer></Footer> | |
4 | +</template> | |
5 | + | |
6 | +<script> | |
7 | +import Footer from "../../layout/Footer.vue"; | |
8 | + | |
9 | +export default { | |
10 | + data() { | |
11 | + return {}; | |
12 | + }, | |
13 | + methods: {}, | |
14 | + watch: {}, | |
15 | + computed: {}, | |
16 | + components: { | |
17 | + // Header: Header, | |
18 | + // Menu: Menu, | |
19 | + Footer: Footer, | |
20 | + // Side_t:Side_t, | |
21 | + }, | |
22 | + mounted() { | |
23 | + console.log("main mounted"); | |
24 | + }, | |
25 | +}; | |
26 | +</script> | |
27 | +<style scoped></style> |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?