Files
Yi.Admin/Yi.Vue3.x.Vant/src/layout/main/index.vue
2022-10-05 23:54:53 +08:00

17 lines
240 B
Vue

<template>
<app-tab class="tabs"/>
</template>
<script setup lang="ts">
import { ref } from 'vue'
import AppTab from '@/layout/tab/index.vue'
</script>
<style scoped>
.tabs{
position: absolute;
top: 0;
left: 0;
}
</style>