feat: 初始化提交
笑笑 authored at 2025-05-13 21:25:06
216.00 B
cube-front
<script setup lang="ts">
// 无需特殊逻辑
</script>

<template>
  <div class="content">
    <slot></slot>
  </div>
</template>

<style lang="scss" scoped>
.content {
  height: 100%;
  overflow: auto;
}
</style>