<script setup>
import {onMounted} from 'vue';
const webapp = window.Telegram.WebApp;
onMounted(async () => {
webapp.expand();
webapp.ready();
webapp.isOrientationLocked();
webapp.disableVerticalSwipes();
webapp.disableClosingConfirmation();
webapp.setBackgroundColor("#000000");
});
</script>
<template>
<router-view></router-view>
</template>