
+++ client/views/pages/user/portal/myPage/myInfo/MyInfoInsert.vue
... | ... | @@ -0,0 +1,30 @@ |
1 | +<template> | |
2 | + <div class="content pt50 pb50"> | |
3 | + <div class="content w1200"> | |
4 | + <div class="page-title point-font mb30"> | |
5 | + <p>내 정보 관리</p> | |
6 | + </div> | |
7 | + | |
8 | + <UserInfoInsert :pageId="pageId" /> | |
9 | + </div> | |
10 | + </div> | |
11 | +</template> | |
12 | + | |
13 | +<script> | |
14 | +import pageAuthMixin from "../../../../../../views/common/pageAuthMixin.js"; | |
15 | +// COMPONENETS | |
16 | +import UserInfoInsert from "../../../../../component/userInfo/UserInfoInsert.vue"; | |
17 | + | |
18 | +export default { | |
19 | + mixins: [pageAuthMixin], | |
20 | + components: { | |
21 | + UserInfoInsert, | |
22 | + }, | |
23 | + data() { | |
24 | + return { | |
25 | + pageId: this.$store.state.mbrId, // 페이지 아이디 | |
26 | + // pageAuth: JSON.parse(localStorage.getItem("vuex")).pageAuth, // 페이지 권한 | |
27 | + }; | |
28 | + }, | |
29 | +}; | |
30 | +</script>(파일 끝에 줄바꿈 문자 없음) |
+++ client/views/pages/user/portal/myPage/myInfo/MyInfoView.vue
... | ... | @@ -0,0 +1,29 @@ |
1 | +<template> | |
2 | + <div class="content pt50 pb50"> | |
3 | + <div class=" w1400"> | |
4 | + <div class="page-title point-font mb30"> | |
5 | + <p>내 정보</p> | |
6 | + </div> | |
7 | + | |
8 | + <UserInfoView :pageId="pageId" /> | |
9 | + </div> | |
10 | + </div> | |
11 | +</template> | |
12 | + | |
13 | +<script> | |
14 | +import pageAuthMixin from "../../../../../../views/common/pageAuthMixin.js"; | |
15 | +// COMPONENETS | |
16 | +import UserInfoView from "../../../../../component/userInfo/UserInfoView.vue"; | |
17 | + | |
18 | +export default { | |
19 | + mixins: [pageAuthMixin], | |
20 | + components: { | |
21 | + UserInfoView, | |
22 | + }, | |
23 | + data() { | |
24 | + return { | |
25 | + pageId: this.$store.state.mbrId, // 페이지 아이디 | |
26 | + }; | |
27 | + }, | |
28 | +}; | |
29 | +</script>(파일 끝에 줄바꿈 문자 없음) |
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?