modifications in ui for audio recording display and some backend fixes
This commit is contained in:
@@ -2,12 +2,15 @@
|
||||
import { useColorMode } from '@vueuse/core'
|
||||
import Navbar from '@/customcompometns/Navbar.vue';
|
||||
import DeviceComponent from '@/customcompometns/DeviceComponent.vue';
|
||||
import { useRoute } from 'vue-router';
|
||||
import { computed } from 'vue';
|
||||
const mode = useColorMode()
|
||||
|
||||
const route = useRoute()
|
||||
const guid = computed(() => String(route.params.guid ?? route.query.guid ?? ''))
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Navbar>
|
||||
<DeviceComponent></DeviceComponent>
|
||||
<DeviceComponent :guid="guid"></DeviceComponent>
|
||||
</Navbar>
|
||||
</template>
|
||||
Reference in New Issue
Block a user