recipe editor in model editor system basics

This commit is contained in:
vabene1111
2024-12-01 16:02:32 +01:00
parent ab9f9701d8
commit 49c8a5a375
35 changed files with 275 additions and 8 deletions

View File

@@ -30,7 +30,7 @@
:noResultsText="$t('No_Results')"
:loading="loading"
@open="multiselect.refreshOptions()"
append-to-body
:append-to-body="appendToBody"
:classes="{
dropdown: 'multiselect-dropdown z-3000',
}"
@@ -63,6 +63,7 @@ const props = defineProps({
canClear: {type: Boolean, default: true},
mode: {type: String as PropType<'single' | 'multiple' | 'tags'>, default: 'single'},
appendToBody: {type: Boolean, default: false},
allowCreate: {type: Boolean, default: false},