unibest/src/layouts/default.vue

23 lines
299 B
Vue
Raw Normal View History

<template>
<view class="default-layout">
<slot />
</view>
</template>
<style lang="scss">
.default-layout {
display: flex;
flex-direction: column;
// #ifdef MP-WEIXIN
height: 100%;
// #endif
// #ifndef MP-WEIXIN
min-height: 100%;
// #endif
overflow: hidden;
}
</style>