36 lines
572 B
Vue
36 lines
572 B
Vue
<template>
|
|
<div
|
|
style="
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background-color: #00000080;
|
|
position: fixed;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 999;
|
|
"
|
|
v-show="maskLayerShow"
|
|
>
|
|
<div style="position: absolute; top: 0; bottom: 0; left: 0; right: 0; overflow-y: auto">
|
|
<slot></slot>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
const props = defineProps({
|
|
maskLayerShow: {
|
|
type: Boolean,
|
|
required: true,
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
* {
|
|
color: black;
|
|
}
|
|
</style>
|