alicewoxy

Untitled

May 29th, 2020
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. <multiselect class="h40" style="width:130px;"
  2. :internal-search="false"
  3. :searchable="false"
  4. v-model="values['selected_status_arr']"
  5. :options="options.status_new "
  6. :multiple="true"
  7. :close-on-select="false"
  8. :hide-selected="false"
  9. label="key"
  10. track-by="id"
  11. :clear-on-select="false"
  12. :preserve-search="true"
  13. :custom-label="customLabel"
  14. :preselect-first="false"
  15. :limit="0"
  16. :limit-text="displayText"
  17. selectLabel=""
  18. deselectLabel=""
  19. selectedLabel=""
  20. placeholder=""
  21. @close="onChange">
  22. <template slot="selection" slot-scope="{ values, isOpen }"><span class="multiselect__single" v-if="values.length &amp;&amp; !isOpen">{{ values.length }} selected</span></template>
  23. <template slot="tag" slot-scope="props"><span class="custom__tag"><span>{{ props.option.key }}</span><span class="custom__remove" @click="props.remove(props.option)">❌</span></span></template>
  24. <template slot="option" slot-scope="props">
  25. {{ $t('resources.' + props.option.key) }}
  26. </template>
  27.  
  28. </multiselect>
Add Comment
Please, Sign In to add comment