2023-01-18 14:07:07 +08:00
|
|
|
<script setup lang="ts">
|
|
|
|
const {
|
|
|
|
zIndex = 100,
|
|
|
|
background = 'transparent',
|
2025-03-02 23:50:12 +09:00
|
|
|
} = defineProps<{
|
2023-01-18 14:07:07 +08:00
|
|
|
zIndex?: number
|
|
|
|
background?: string
|
|
|
|
}>()
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div fixed top-0 bottom-0 left-0 right-0 :style="{ background, zIndex }" />
|
|
|
|
</template>
|