Files
alhp-web/frontend/src/components/BuildServerStats.vue

17 lines
451 B
Vue

<template>
<v-sheet class="mt-2" color="transparent">
<h5 class="text-h5">Buildserver Stats</h5>
<iframe
:height="width <= 800 ? '1050px' : '420px'"
allowtransparency="true"
class="w-100 border-0"
src="https://stats.itsh.dev/public-dashboards/0fb04abb0c5e4b7390cf26a98e6dead1"></iframe>
</v-sheet>
</template>
<script lang="ts" setup>
import { useDisplay } from 'vuetify'
const { width } = useDisplay()
</script>