vue3sandbox/src/App.vue

18 lines
261 B
Vue
Raw Normal View History

2024-12-09 06:54:32 +00:00
<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>