|
|
- <template>
- <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>
- </template>
-
- <script>
- export default {
- name: 'CatalogPopup',
- props: {
- show: Boolean,
- chapterList: Array,
- currentIndex: Number,
- orderAsc: Boolean,
- top: {
- type: String,
- default: '196px'
- },
- minHeight: {
- type: String,
- default: 'calc(100vh - 196px)'
- }
- },
- mounted() {
- console.log('CatalogPopup mounted');
- }
- }
- </script>
|