forked from mirrors/homebox
19 lines
363 B
Vue
19 lines
363 B
Vue
|
<script setup lang="ts">
|
||
|
import { TreeItem } from "~~/lib/api/types/data-contracts";
|
||
|
|
||
|
type Props = {
|
||
|
locs: TreeItem[];
|
||
|
treeId: string;
|
||
|
};
|
||
|
|
||
|
defineProps<Props>();
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div class="p-4 border-2 root">
|
||
|
<LocationTreeNode v-for="item in locs" :key="item.id" :item="item" :tree-id="treeId" />
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<style></style>
|