misc: Vue 상하단 버튼바에 '창 닫기' 추가

This commit is contained in:
2022-04-20 20:59:10 +09:00
parent afea85d558
commit 683121f4a3
2 changed files with 7 additions and 4 deletions
+3 -1
View File
@@ -1,6 +1,8 @@
<template>
<div class="bg0" style="padding-top: 20px">
<button type="button" class="btn btn-sammo-base2 back_btn" @click="back">돌아가기</button>
<button type="button" class="btn btn-sammo-base2 back_btn" @click="back">
{{ props.type == "close" ? " 닫기" : "돌아가기" }}
</button>
<div />
</div>
</template>
+4 -3
View File
@@ -1,6 +1,7 @@
<template>
<div :class="['bg0', 'back_bar', teleportZone?'back_bar_teleport':undefined]">
<button type="button" class="btn btn-sammo-base2 back_btn" @click="back">돌아가기</button
<div :class="['bg0', 'back_bar', teleportZone ? 'back_bar_teleport' : undefined]">
<button type="button" class="btn btn-sammo-base2 back_btn" @click="back">
{{ props.type == "close" ? " 닫기" : "돌아가기" }}</button
><button v-if="reloadable" type="button" class="btn btn-sammo-base2 reload_btn" @click="reload">갱신</button>
<div v-else />
<h2 class="title">
@@ -94,7 +95,7 @@ function reload() {
margin-right: 2px;
}
.teleport-zone{
.teleport-zone {
height: 24pt;
}