hx/layouts/default.vue

13 lines
163 B
Vue
Raw Permalink Normal View History

2024-10-18 18:09:15 +08:00
<template>
<view class="default-layout">
<slot />
</view>
</template>
<style lang="scss">
.default-layout {
height: 100vh;
overflow: auto;
}
</style>