mirror of https://github.com/elk-zone/elk.git
14 lines
255 B
Vue
14 lines
255 B
Vue
|
<script setup lang="ts">
|
||
|
const {
|
||
|
zIndex = 100,
|
||
|
background = 'transparent',
|
||
|
} = $defineProps<{
|
||
|
zIndex?: number
|
||
|
background?: string
|
||
|
}>()
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div fixed top-0 bottom-0 left-0 right-0 :style="{ background, zIndex }" />
|
||
|
</template>
|