mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-05-10 17:42:50 +08:00
19 lines
394 B
Vue
19 lines
394 B
Vue
<script lang="ts" setup>
|
|
interface Props {
|
|
color?: string
|
|
message?: string
|
|
}
|
|
|
|
const props = defineProps<Props>()
|
|
</script>
|
|
|
|
<template>
|
|
<div class="absolute top-2 right-2 flex items-center justify-between p-2 shadow">
|
|
<VBadge :color="props.color" bordered>
|
|
<template #badge>
|
|
<VIcon icon="mdi-pulse"></VIcon>
|
|
</template>
|
|
</VBadge>
|
|
</div>
|
|
</template>
|