AzuraCast/frontend/vue/components/Stations/Reports/Overview/ClientsTab.vue

21 lines
583 B
Vue

<template>
<common-metrics-view :date-range="dateRange" :api-url="apiUrl"
field-key="client" :field-label="$gettext('Client')">
<template #by_listeners_legend>
{{ $gettext('Clients by Listeners') }}
</template>
<template #by_connected_time_legend>
{{ $gettext('Clients by Connected Time') }}
</template>
</common-metrics-view>
</template>
<script setup>
import CommonMetricsView from "./CommonMetricsView";
const props = defineProps({
dateRange: Object,
apiUrl: String,
});
</script>