26 lines
398 B
Vue
26 lines
398 B
Vue
<template>
|
|
|
|
<VApp>
|
|
|
|
<VMain>
|
|
<navbar/>
|
|
<NuxtPage/>
|
|
|
|
</VMain>
|
|
|
|
|
|
</VApp>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const user = useCookie('user')
|
|
import { componentNames } from '#build/components';
|
|
import { components } from 'vuetify/dist/vuetify-labs.js';
|
|
import Appfooter from './components/footer.vue';
|
|
{
|
|
name:'App'
|
|
component: {
|
|
Appfooter
|
|
}
|
|
}
|
|
</script> |