18 lines
285 B
Vue
18 lines
285 B
Vue
![]() |
<template>
|
||
|
<view class="layout">
|
||
|
<slot />
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
import { ref, defineProps, reactive } from 'vue';
|
||
|
const props = defineProps(['size'])
|
||
|
console.log("gxs --> % props:\n", props)
|
||
|
</script>
|
||
|
|
||
|
<style lang="less">
|
||
|
.layout {
|
||
|
min-height: 100%;
|
||
|
}
|
||
|
</style>
|