This commit is contained in:
2024-11-24 18:03:06 +00:00
parent 641938f7e4
commit 16ba22d90b
39 changed files with 76 additions and 254 deletions

View File

@@ -28,7 +28,7 @@
</AudioCard>
</template>
<script setup lang="ts">
import {computed} from 'vue';
import {computed, UnwrapNestedRefs} from 'vue';
import {SfxGroupNode} from '../../model/Audio/SfxGroupNode';
import AudioCard from './AudioCard.vue';
import {groupBy} from '../../utils/groupBy';
@@ -36,7 +36,7 @@ import SfxSound from './SfxSound.vue';
const props = defineProps<{
node: SfxGroupNode,
node: UnwrapNestedRefs<SfxGroupNode>,
}>();
const emit = defineEmits<{