v-row
v-col(sm=3 cols=12)
v-switch(
v-if='settings.allow_recurrent_event'
v-model='show_recurrent'
@change='change'
inset color='primary'
hide-details
:label="$t('event.show_recurrent')")
v-col(sm="5" cols=12)
v-autocomplete.p-0(
:disabled='!!collection'
v-model="filters"
no-filter
outlined
:label='$t("common.filter")'
hide-details
color='primary'
hide-selected
small-chips
@focus='search'
:menu-props="{ maxWidth: '400' }"
:items='items'
@change='change'
hide-no-data
@input.native='search'
item-text='label'
return-object
chips
multiple)
template(v-slot:selection="{ attrs, item }")
v-chip(v-bind="attrs"
small
close
@click:close='remove(item)'
:close-icon='mdiCloseCircle')
v-avatar(left)
v-icon(small v-text="item.type === 'place' ? mdiMapMarker : item.type === 'tag' ? mdiTag : mdiCollage")
span {{ item.label }}
template(v-slot:item='{ item }')
v-list-item-avatar
v-icon(v-text="item.type === 'place' ? mdiMapMarker : item.type === 'tag' ? mdiTag : mdiCollage")
v-list-item-content
v-list-item-title(v-text='item.label')
v-list-item-subtitle(v-if='item.type ==="place"' v-text='item.label !== "online" ? item.address : ""')
v-col(sm=4 cols=12)
v-autocomplete.p-0(
:disabled='!!filters.length'
v-model="collection"
outlined
:label='$t("common.collections")'
hide-details
color='primary'
hide-selected
:menu-props="{ maxWidth: '400' }"
:items='collections'
@change='change'
hide-no-data
clearable
:clear-icon='mdiCloseCircle'
item-text='name')