This commit is contained in:
yagnikvamja
2024-07-08 17:16:10 +05:30
parent 4fa50c088f
commit d098e5341d
496 changed files with 47210 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<script setup lang="ts">
import UpgradeToPro from '@/components/UpgradeToPro.vue'
const { isMobile } = useDevice()
if (isMobile)
configStore.appContentLayoutNav = 'vertical'
</script>
<template>
<VApp>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
<UpgradeToPro />
</VApp>
</template>