diff --git a/CHANGELOG.md b/CHANGELOG.md
index fa8a88f9d..a4eca7d3f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -14,6 +14,7 @@ Since v0.0.10, this Changelog is formatted according to the [Common Changelog][c
- ([#615](https://github.com/demos-europe/demosplan-ui/pull/615)) **Breaking:** Change DpBulkEditHeader Props ([@ahmad-demos](https://github.com/@ahmad-demos))
### Added
+- ([#629](https://github.com/demos-europe/demosplan-ui/pull/629)) Allow to use all available slots from vue-multiselect in DpMultiselect ([@salis-demos](https://github.com/salis-demos))
- ([#615](https://github.com/demos-europe/demosplan-ui/pull/615)) Add DpBulkEditHeader documentation to Storybook ([@ahmad-demos](https://github.com/@ahmad-demos))
- ([#605](https://github.com/demos-europe/demosplan-ui/pull/605)) Add DpEditableList documentation to Storybook ([@ahmad-demos](https://github.com/@ahmad-demos))
- ([#591](https://github.com/demos-europe/demosplan-ui/pull/591)) Add label tests for form components ([@hwiem](https://github.com/hwiem))
diff --git a/src/components/DpMultiselect/DpMultiselect.vue b/src/components/DpMultiselect/DpMultiselect.vue
index 21e7deb42..8135d10af 100644
--- a/src/components/DpMultiselect/DpMultiselect.vue
+++ b/src/components/DpMultiselect/DpMultiselect.vue
@@ -43,16 +43,12 @@
{{ Translator.trans('explanation.noentries') }}
-
-
-
-
-
+
+ :name="slot" />
@@ -236,6 +232,17 @@ export default {
default: ''
},
+ /**
+ * If necessary, slots can be added
+ * according to this List
+ * https://vue-multiselect.js.org/#sub-slots
+ */
+ subSlots: {
+ type: Array,
+ required: false,
+ default: () => ['option', 'tag']
+ },
+
tagPlaceholder: {
type: String,
required: false,