24 lines
419 B
Vue
Raw Normal View History

2024-07-12 18:30:09 +08:00
<template>
<FillPage>
<div class="scope-page">
<div class="my-page">节流</div>
</div>
</FillPage>
</template>
<script setup lang="ts"></script>
<style lang="scss" scoped>
.scope-page {
box-sizing: border-box;
height: 100%;
padding: $padding;
.my-page {
height: 100%;
padding: $padding;
box-sizing: border-box;
background: $color-bg-1;
}
}
</style>