AIzhushou-screen/src/views/index/index.vue

21 lines
377 B
Vue
Raw Normal View History

2024-05-22 08:44:08 +08:00
<script setup lang="ts">
2024-05-23 15:47:12 +08:00
import zkItem from "@/components/zk-item";
2025-08-08 14:14:56 +08:00
import ContentHeader from "./content-header.vue";
2024-05-22 08:44:08 +08:00
</script>
<template>
<div class="index-box">
2025-08-08 14:14:56 +08:00
<ContentHeader />
2024-05-22 08:44:08 +08:00
</div>
</template>
<style scoped lang="scss">
.index-box {
width: 100%;
display: flex;
2025-08-08 14:14:56 +08:00
min-height: calc(100% - 80px);
2024-05-22 08:44:08 +08:00
justify-content: space-between;
2025-08-08 14:14:56 +08:00
padding: 20px;
2024-05-24 17:42:14 +08:00
}
2024-05-22 08:44:08 +08:00
</style>