v1.0
This commit is contained in:
17
components/layout/layout.vue
Normal file
17
components/layout/layout.vue
Normal file
@ -0,0 +1,17 @@
|
||||
<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>
|
Reference in New Issue
Block a user