InspectorTree.vue 230 B

12345678910111213
  1. <script setup lang="ts">
  2. import { watch } from 'vue'
  3. const { selectedObject } = useDevtoolsHook()
  4. </script>
  5. <template>
  6. <InspectorBranch
  7. :key="selectedObject.uuid"
  8. :entry="selectedObject"
  9. :depth="0"
  10. />
  11. </template>