Files
archy/packages/app/src/App.vue
T

10 lines
224 B
Vue
Raw Normal View History

<template>
<div class="h-dvh flex flex-col bg-gray-50 text-gray-900 dark:bg-gray-950 dark:text-gray-100">
<RouterView />
</div>
</template>
<script setup lang="ts">
import { RouterView } from 'vue-router'
</script>