Files
cc-inspector-chrome/src/views/devtools/ui/propertys.vue
2025-02-03 13:22:09 +08:00

46 lines
1.0 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<div class="prop ccui-scrollbar">
<PropertyGroup v-for="(group, index) in data.group" :key="index" :group="group"></PropertyGroup>
</div>
</template>
<script lang="ts">
import { defineComponent, PropType, watch } from "vue";
import { Bus, BusMsg } from "../bus";
import { NodeInfoData } from "../data";
import PropertyGroup from "../ui/property-group.vue";
import UiProp from "./ui-prop.vue";
export default defineComponent({
components: { PropertyGroup, UiProp },
props: {
data: {
type: Object as PropType<NodeInfoData>,
default: () => {
return {};
},
},
},
setup(props, context) {
watch(
() => props.data,
(newValue: NodeInfoData, oldValue: NodeInfoData) => {
// console.log(newValue);
if (newValue.uuid !== oldValue.uuid) {
// 切换node全部展开属性
Bus.emit(BusMsg.FoldAllGroup, false);
}
}
);
return {};
},
});
</script>
<style scoped lang="less">
.prop {
color: white;
overflow: auto;
}
</style>