타이틀, favicon 설정

This commit is contained in:
2025-06-11 00:01:04 +09:00
parent 66a45eac8f
commit d085e037a1
33 changed files with 69 additions and 7 deletions
+2 -2
View File
@@ -37,7 +37,7 @@
<label for="clubOwner">모임장 설정</label>
<select id="clubOwner" v-model="selectedOwnerId" class="form-control">
<option v-for="member in members" :key="member.id" :value="member.userId">
{{ member.name }} ({{ member.memberType }}) [ID: {{ member.userId }}]
{{ member.name }} ({{ getMemberTypeLabel(member.memberType) }}) [ID: {{ member.userId }}]
</option>
</select>
<small class="form-text text-muted">모임장 권한을 이전할 회원을 선택합니다. 모임장은 클럽의 모든 관리 권한을 가집니다.</small>
@@ -127,7 +127,7 @@
</template>
<script setup>
import { AVERAGE_CALCULATION_PERIOD_OPTIONS } from '@/utils/enumMappings';
import { AVERAGE_CALCULATION_PERIOD_OPTIONS, getMemberTypeLabel } from '@/utils/enumMappings';
import { ref, onMounted, computed, inject } from 'vue';
import { useRouter } from 'vue-router';