mirror of
https://github.com/tuna/mirror-web.git
synced 2025-12-26 13:42:48 +00:00
18 lines
367 B
Vue
18 lines
367 B
Vue
<script setup>
|
|
import { defineProps } from "vue";
|
|
|
|
const props = defineProps(["mir"]);
|
|
</script>
|
|
<template>
|
|
{{ mir.last_update }}
|
|
<span
|
|
v-if="mir.show_status"
|
|
:class="['badge', 'badge-status', mir.label, 'd-none', 'd-md-inline-block']"
|
|
>
|
|
{{ mir.status }}
|
|
</span>
|
|
</template>
|
|
<style lang="scss" scoped>
|
|
@use "../styles/badge-status.scss";
|
|
</style>
|