Files
front-pc/layouts/m.vue
2025-09-01 10:58:34 +08:00

16 lines
202 B
Vue

<script setup lang="ts">
</script>
<template>
<div class="m">
<slot />
</div>
</template>
<style lang="scss" scoped>
.m {
width: 100%;
height: 100%;
background-color: #f5f5f5;
}
</style>