vbv/client/src/App.vue

12 lines
188 B
Vue

<template>
<div id="app">
<AppLayout>
<router-view/>
</AppLayout>
</div>
</template>
<script setup lang="ts">
import AppLayout from "@/layouts/AppLayout.vue";
</script>