..
This commit is contained in:
parent
675eb93587
commit
05769d18ff
@ -1,9 +1,16 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="container-xxl flex-grow-1 container-p-y pb-0">
|
<div class="container-xxl flex-grow-1 container-p-y pb-0">
|
||||||
<MainEventCalendar />
|
<MainEventCalendar />
|
||||||
<MemberManagement v-if="isAdmin" />
|
<MemberManagement v-if="isAdmin" />
|
||||||
<div class="container-p-y">
|
<div class="row mt-4">
|
||||||
|
<!-- 게시판 -->
|
||||||
<BoardMain />
|
<BoardMain />
|
||||||
|
<!-- 용어집 -->
|
||||||
|
<main-word-dict />
|
||||||
|
<!-- 투표 -->
|
||||||
|
<main-vote />
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@ -11,7 +18,9 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import MainEventCalendar from '@/components/main/MainEventCalendar.vue';
|
import MainEventCalendar from '@/components/main/MainEventCalendar.vue';
|
||||||
import MemberManagement from '@/components/main/MemberManagement.vue';
|
import MemberManagement from '@/components/main/MemberManagement.vue';
|
||||||
|
import MainWordDict from '@c/main/MainWordDict.vue';
|
||||||
import BoardMain from '@c/main/BoardMain.vue';
|
import BoardMain from '@c/main/BoardMain.vue';
|
||||||
|
import MainVote from '@c/main/MainVote.vue';
|
||||||
import { useUserInfoStore } from '@/stores/useUserInfoStore';
|
import { useUserInfoStore } from '@/stores/useUserInfoStore';
|
||||||
import { inject, onMounted, ref } from 'vue';
|
import { inject, onMounted, ref } from 'vue';
|
||||||
import $api from '@api';
|
import $api from '@api';
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user