3 changed files with 41 additions and 1 deletions
@ -0,0 +1,31 @@ |
|||
<template> |
|||
<view class="book-page btPadding"> |
|||
<view class="page-box"></view> |
|||
</view> |
|||
</template> |
|||
|
|||
<script> |
|||
export default { |
|||
data() { |
|||
return { |
|||
|
|||
} |
|||
}, |
|||
methods: { |
|||
|
|||
} |
|||
} |
|||
</script> |
|||
|
|||
<style lang="scss" scoped> |
|||
.book-page{ |
|||
height: 100vh; |
|||
width: 100%; |
|||
background: #F6F6F6; |
|||
overflow-y: auto; |
|||
box-sizing: border-box; |
|||
.page-box{ |
|||
width: calc(100% - 34rpx); |
|||
} |
|||
} |
|||
</style> |
Loading…
Reference in new issue