You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
378 B
19 lines
378 B
<template>
|
|
<div class="disinfection_setting_container">
|
|
<Device :runInfection="true" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import Device from 'cpns/Setting/components/Device'
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.disinfection_setting_container {
|
|
margin-bottom: 19px;
|
|
height: 580px;
|
|
box-sizing: border-box;
|
|
background: #ffffff;
|
|
border-radius: 16px;
|
|
}
|
|
</style>
|