12 lines
273 B
Vue
12 lines
273 B
Vue
<script setup>
|
|
import EdgeGatewayManager from "@/features/edgeGateways/EdgeGatewayManager.vue";
|
|
|
|
const props = defineProps({
|
|
departmentId: { type: Number, default: null },
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<EdgeGatewayManager :department-id="props.departmentId" />
|
|
</template>
|