template-book-list.vue 240 B

12345678910111213141516171819
  1. <template>
  2. <view class="content">
  3. 书-list
  4. </view>
  5. </template>
  6. <script setup lang="ts">
  7. </script>
  8. <style lang="scss">
  9. .content{
  10. display: flex;
  11. flex-direction: column;
  12. height: 200rpx;
  13. background-color: plum;
  14. }
  15. </style>