12 lines
314 B
Vue
12 lines
314 B
Vue
|
<template>
|
||
|
<v-theme-provider :theme="isDark ? 'dark' : 'light'">
|
||
|
<v-layout class="text-gray-700 dark:text-gray-200 min-h-screen flex flex-col">
|
||
|
<Nav />
|
||
|
<div class="m-auto px-5 text-left flex">
|
||
|
<RouterView />
|
||
|
</div>
|
||
|
<Footer />
|
||
|
</v-layout>
|
||
|
</v-theme-provider>
|
||
|
</template>
|