import Card from '@/components/Card'; import { BaseMediaUrl } from '@/constants/constants'; import { useIncidentStore } from '@/store'; import { time } from 'console'; import { computed, defineComponent, onMounted, onUnmounted, ref, } from 'vue-demi'; export default defineComponent({ name: 'LiveMonitoringCard', setup() { const store = useIncidentStore(); const liveRef = ref(); const timer = ref(); const current = ref(0); return () => (
); }, });