fix: 全局格式化

This commit is contained in:
Tim
2025-08-11 18:16:13 +08:00
parent 31cff70f63
commit 1c4df40f12
76 changed files with 1442 additions and 939 deletions

View File

@@ -26,10 +26,10 @@ export default {
components: { BasePopup },
props: {
visible: { type: Boolean, default: false },
medals: { type: Array, default: () => [] }
medals: { type: Array, default: () => [] },
},
emits: ['close'],
setup (props, { emit }) {
setup(props, { emit }) {
const router = useRouter()
const gotoMedals = () => {
emit('close')
@@ -41,7 +41,7 @@ export default {
}
const close = () => emit('close')
return { gotoMedals, close }
}
},
}
</script>
@@ -110,4 +110,3 @@ export default {
text-decoration: underline;
}
</style>