This commit is contained in:
2021-10-06 18:20:04 +00:00
parent 5e7ab769c0
commit 3c81e54710
2 changed files with 16 additions and 4 deletions

View File

@@ -10,8 +10,10 @@
:items="sourcetags"
:loading="tagSearchUnderway"
:placeholder="placeHolderText"
:prepend-inner-icon="prependInnerIcon"
:no-data-text="$ay.t('NoData')"
:search-input.sync="tagSearchEntry"
:clearable="clearable"
hide-selected
multiple
chips
@@ -66,9 +68,16 @@ export default {
errorMessages: { type: Array, default: null },
selectOnly: { type: Boolean, default: false },
noLabel: { type: Boolean, default: false },
clearable: { type: Boolean, default: false },
placeHolder: {
type: String,
default: null
},
prependInnerIcon: {
type: String,
default() {
return null;
}
}
},
watch: {