-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
경로 변경 및 컴포넌트를 단일 페이지에 나타내기 위한 컨테이너 컴포넌트 생성
- Loading branch information
Showing
20 changed files
with
212 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<script setup> | ||
import AdminUserBoard from "@/components/admin/user/sub/AdminUserBoardComponent.vue"; | ||
const props = defineProps(['memNo']); | ||
</script> | ||
|
||
<template> | ||
<div id="index_user_boards" class="wrapper-block"> | ||
<div class="inner"> | ||
<div class="inner-block"> | ||
<div class="content"> | ||
<div class="block-title-box"> | ||
<h2 class="block-title">회원이 작성한 게시글</h2> | ||
</div> | ||
|
||
|
||
|
||
<AdminUserBoard :memNo="memNo"></AdminUserBoard> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<style scoped> | ||
</style> |
25 changes: 25 additions & 0 deletions
25
src/components/admin/user/AdminUserBoardRecommendedContainer.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<script setup> | ||
import AdminUserBoardRecommended from "@/components/admin/user/sub/AdminUserBoardRecommendedComponent.vue"; | ||
const props = defineProps(['memNo']); | ||
</script> | ||
|
||
<template> | ||
<div id="index_user_boards" class="wrapper-block"> | ||
<div class="inner"> | ||
<div class="inner-block"> | ||
<div class="content"> | ||
<div class="block-title-box"> | ||
<h2 class="block-title">회원이 추천한 게시글</h2> | ||
</div> | ||
|
||
<AdminUserBoardRecommended :memNo="memNo"></AdminUserBoardRecommended> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<style scoped> | ||
</style> |
25 changes: 25 additions & 0 deletions
25
src/components/admin/user/AdminUserCommentImpContainer.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<script setup> | ||
import AdminUserComment from "@/components/admin/user/sub/AdminUserCommentImpComponent.vue"; | ||
const props = defineProps(['memNo']); | ||
</script> | ||
|
||
<template> | ||
<div id="index_userdetail" class="wrapper-block"> | ||
<div class="inner"> | ||
<div class="inner-block"> | ||
<div class="content"> | ||
<div class="block-title-box"> | ||
<h2 class="block-title">회원이 작성한 댓글</h2> | ||
</div> | ||
|
||
<AdminUserComment :memNo="memNo"></AdminUserComment> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<style scoped> | ||
</style> |
11 changes: 11 additions & 0 deletions
11
src/components/admin/user/AdminUserCommentMovContainer.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<script setup> | ||
</script> | ||
|
||
<template> | ||
|
||
</template> | ||
|
||
<style scoped> | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...onents/admin/AdminUserDetailContainer.vue → ...s/admin/user/AdminUserDetailContainer.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<script setup> | ||
import AdminUserLoginLog from "@/components/admin/user/sub/AdminUserLoginLogsComponent.vue"; | ||
const props = defineProps(['memNo']); | ||
</script> | ||
|
||
<template> | ||
<div id="index_user_notices" class="wrapper-block"> | ||
<div class="inner"> | ||
<div class="inner-block"> | ||
<div class="content"> | ||
<div class="block-title-box"> | ||
<h2 class="block-title">회원 로그인 기록</h2> | ||
</div> | ||
|
||
<AdminUserLoginLog :memNo="memNo"></AdminUserLoginLog> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<style scoped> | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<script setup> | ||
import AdminUserNotice from "@/components/admin/user/sub/AdminUserNoticeComponent.vue"; | ||
const props = defineProps(['memNo']); | ||
</script> | ||
|
||
<template> | ||
<div id="index_user_notices" class="wrapper-block"> | ||
<div class="inner"> | ||
<div class="inner-block"> | ||
<div class="content"> | ||
<div class="block-title-box"> | ||
<h2 class="block-title">회원이 작성한 공지사항</h2> | ||
</div> | ||
|
||
<AdminUserNotice :memNo="memNo"></AdminUserNotice> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<style scoped> | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.