在线监测点

This commit is contained in:
仲么了
2024-02-21 16:41:40 +08:00
parent 30513eb374
commit c9ae51e141
17 changed files with 637 additions and 1 deletions

View File

@@ -23,6 +23,7 @@
size="18"
class="fold ml10 menu-collapse"
style="cursor: pointer"
v-if='props.canExpand'
/>
</div>
<el-tree
@@ -61,10 +62,12 @@ defineOptions({
})
interface Props {
width?: string
canExpand?: boolean
}
const props = withDefaults(defineProps<Props>(), {
width: '280px'
width: '280px',
canExpand: true
})
const { proxy } = useCurrentInstance()
const menuCollapse = ref(false)