mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-12 20:26:36 +08:00
17 lines
240 B
Vue
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>
|
|
|