-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
da-in
committed
Jan 3, 2024
1 parent
672aef6
commit 5fa17ad
Showing
5 changed files
with
32 additions
and
4 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<template> | ||
<div class="fixed inset-0 flex items-center justify-center z-50"> | ||
<div class="flex flex-col gap-10 w-[300px] h-[675px] justify-center items-center bg-white text-4xl rounded-3xl border-2 border-black"> | ||
<img :src="endText" alt="끗" width="75"/> | ||
<img :src="endImage" alt="덕 같이 멸망" width="253"/> | ||
<span>score: {{ score }}</span> | ||
<button @click="$emit('replay')" class="bg-[#FCBF31] rounded-full border-2 border-black px-6">또 해야되네</button> | ||
</div> | ||
</div> | ||
</template> | ||
<script setup lang="ts"> | ||
import endImage from '../../../assets/end-image.png' | ||
import endText from '../../../assets/end-text.png' | ||
defineProps({ | ||
score: { | ||
type: Number, | ||
default: 0 | ||
} | ||
}) | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters