vue3sandbox/src/App.vue
严争鸣 7f68787164 init
2024-12-09 14:54:32 +08:00

18 lines
261 B
Vue

<script setup lang="ts">
import { RouterView } from 'vue-router'
import LayoutCom from "./views/Layout";
</script>
<template>
<div class="p-5 w-h-full">
<LayoutCom>
<!-- <RouterView /> -->
</LayoutCom>
</div>
</template>
<style scoped>
</style>