diff --git a/src/components/HomePage.vue b/src/components/HomePage.vue index 6ee8b7d..16f15ee 100644 --- a/src/components/HomePage.vue +++ b/src/components/HomePage.vue @@ -360,6 +360,11 @@ watch(() => lotteryShow.value, async (newVal) => { initUserGameInfos(true, true); }, { immediate: true }) +import Popup from './Popup.vue' +const isPopupVisible = ref(false); +const navigatePopupPage = () => { + isPopupVisible.value = true; +}