小说小程序前端代码仓库(小程序)
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.

25 lines
570 B

  1. <template>
  2. <view v-if="show" style="position:fixed;top:200px;left:0;right:0;z-index:99999;background:#0f0;color:#fff;font-size:40rpx;text-align:center;">CatalogPopup弹窗测试</view>
  3. </template>
  4. <script>
  5. export default {
  6. name: 'CatalogPopup',
  7. props: {
  8. show: Boolean,
  9. chapterList: Array,
  10. currentIndex: Number,
  11. orderAsc: Boolean,
  12. top: {
  13. type: String,
  14. default: '196px'
  15. },
  16. minHeight: {
  17. type: String,
  18. default: 'calc(100vh - 196px)'
  19. }
  20. },
  21. mounted() {
  22. console.log('CatalogPopup mounted');
  23. }
  24. }
  25. </script>