Multiple libraries can now be opened, allowing library items to be moved

This commit is contained in:
Stefan Zermatten
2020-08-10 04:19:54 +02:00
parent 9c93747845
commit b4cb91a892
2 changed files with 10 additions and 10 deletions

View File

@@ -8,6 +8,7 @@
<v-expansion-panel <v-expansion-panel
v-model="expandedLibrary" v-model="expandedLibrary"
style="box-shadow: none;" style="box-shadow: none;"
expand
> >
<v-expansion-panel-content <v-expansion-panel-content
v-for="library in libraries" v-for="library in libraries"

View File

@@ -1,14 +1,13 @@
<template lang="html"> <template lang="html">
<tree-node-list <tree-node-list
group="library"
:children="libraryChildren" :children="libraryChildren"
:group="library && library._id" :organize="organizeMode"
:organize="organizeMode" :selected-node-id="selectedNodeId"
:selected-node-id="selectedNodeId" @selected="e => $emit('selected', e)"
@selected="e => $emit('selected', e)" @reordered="reordered"
@reordered="reordered" @reorganized="reorganized"
@reorganized="reorganized" />
/>
</template> </template>
<script> <script>