17 lines
305 B
Vue
17 lines
305 B
Vue
<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>
|