Created
August 18, 2017 01:21
-
-
Save danielverissimo/6d35e9b0d88e18414da1f8875917b3ff to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Vuejs multiselect ajax | |
<multiselect | |
v-model="filter.additional.analyst_cb_id" | |
@input="fetchIndexData" | |
:options="analysts" | |
track-by="id" | |
label="name" | |
:multiple="false" | |
:searchable="true" | |
:loading="isLoading" | |
@search-change="findAnalysts" | |
:internal-search="false" | |
:close-on-select="true" | |
placeholder="Selecione..." | |
deselectLabel="Remover Pressione Enter..." | |
selectedLabel="Selecionado" | |
select-label="Pressione Enter"> | |
<span slot="noResult">Oops! Nenhum analista encontrado com estas informações.</span> | |
</multiselect> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment