diff --git a/src/App.vue b/src/App.vue index 42950b5..9d8d39d 100644 --- a/src/App.vue +++ b/src/App.vue @@ -23,6 +23,8 @@ const router = useRouter() const authed = computed(() => auth.isAuthenticated || demo.on) // 광고: 유료(PREMIUM) 회원에게는 표시하지 않음 const showAds = computed(() => !auth.isPremium) +// 공개 법적 고지(개인정보처리방침·약관)는 웹 브라우저에서도 접근 허용 (앱 마켓 정책 URL) +const isPublicLegal = computed(() => !!route.meta.public) function leaveDemo() { exitDemo() @@ -61,8 +63,11 @@ watch(() => route.fullPath, () => ui.closeSidebar())