18 lines
261 B
Vue
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>
|