13 lines
163 B
Vue
13 lines
163 B
Vue
|
<template>
|
||
|
<view class="default-layout">
|
||
|
<slot />
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<style lang="scss">
|
||
|
.default-layout {
|
||
|
height: 100vh;
|
||
|
overflow: auto;
|
||
|
}
|
||
|
</style>
|