You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

35 lines
451 B

<template>
<view class="x-page">
<!-- #ifdef APP -->
<scroll-view class="x-page__page" :show-scrollbar="false">
<!-- #endif -->
<slot></slot>
<!-- #ifdef APP -->
</scroll-view>
<!-- #endif -->
</view>
</template>
<script>
export default {
name: "x-page",
data() {
return {
};
}
}
</script>
<style>
.x-page {
display: flex;
flex-direction: column;
height: 100%;
}
.x-page__page {
height: 100%;
}
</style>