Files
bdrp-app/src/App.vue

8 lines
158 B
Vue
Raw Normal View History

2026-04-20 16:42:28 +08:00
<script setup lang="ts">
2026-04-23 14:57:35 +08:00
import { installPrivacyGuards } from '@/composables/usePrivacyConsent'
2026-04-20 16:42:28 +08:00
onLaunch(async () => {
2026-04-23 14:57:35 +08:00
installPrivacyGuards()
2026-04-20 16:42:28 +08:00
})
</script>