메인 연결 페이지의 탭 종료와 복귀 동작 통일

This commit is contained in:
2026-09-14 23:49:30 +00:00
parent 62f4ca3058
commit 854a91c397
45 changed files with 720 additions and 237 deletions
@@ -1,9 +1,13 @@
<script setup lang="ts">
import { usePageExit } from '../composables/usePageExit';
import { computed, onMounted, ref } from 'vue';
import { useGameFeedback } from '../composables/useGameFeedback';
import { trpc } from '../utils/trpc';
const { pageExitLabel, exitPage } = usePageExit();
type BettingListItem = {
id: number;
type: string;
@@ -333,15 +337,13 @@ onMounted(() => {
<template>
<main id="nation-betting-container" class="nation-betting-page legacy-bg0">
<header class="legacy-top-bar">
<RouterLink v-slot="{ navigate }" custom to="/">
<button
class="legacy-button legacy-button--navigation legacy-button--fixed-height"
type="button"
@click="navigate"
>
돌아가기
</button>
</RouterLink>
<button
class="legacy-button legacy-button--navigation legacy-button--fixed-height"
type="button"
@click="exitPage"
>
{{ pageExitLabel }}
</button>
<div></div>
<h1>국가 베팅장</h1>
<div></div>
@@ -441,7 +443,9 @@ onMounted(() => {
</section>
<footer class="betting-footer">
<RouterLink class="legacy-button legacy-button--navigation" to="/">돌아가기</RouterLink>
<button class="legacy-button legacy-button--navigation" type="button" @click="exitPage">
{{ pageExitLabel }}
</button>
</footer>
</main>
</template>