2023-10-11 11:27:47 +08:00
|
|
|
<template>
|
|
|
|
<view class="layout">
|
|
|
|
<slot />
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
import { ref, defineProps, reactive } from 'vue';
|
|
|
|
const props = defineProps(['size'])
|
|
|
|
</script>
|
|
|
|
|
2023-11-14 17:21:03 +08:00
|
|
|
<style lang="scss">
|
2023-10-11 11:27:47 +08:00
|
|
|
.layout {
|
|
|
|
min-height: 100%;
|
|
|
|
}
|
|
|
|
</style>
|