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.
|
<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>
|