Lookmaxing
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 1m54s

This commit is contained in:
2026-03-05 20:32:14 +00:00
parent 9dc9a3a063
commit 3f39f6327c
6 changed files with 24 additions and 10 deletions

View File

@@ -1,11 +1,13 @@
<template>
<div v-if="streamLive">
<Header>Radio</Header>
<img src="/img/tmpen31z3pe.PNG" />
<audio controls :src="streamUrl" ref="audio"></audio>
</div>
<div v-else>
<Header>Radio</Header>
<img src="/img/tmpen31z3pe.PNG" />
<div class="m-1">
<div class="m-1 text-center">
<p>Radio is offline. Message for info!</p>
<Button class="w-full" @click="checkStream()">Check Stream</Button>
</div>
@@ -14,6 +16,7 @@
<script setup>
import Button from "@/components/input/Button.vue";
import Header from "@/components/text/Header.vue";
import { ref, onMounted } from "vue";
import axios from "axios";