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.
31 lines
401 B
31 lines
401 B
<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>
|
|
|