Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. <template>
  2.  
  3. <v-container fluid>
  4. <v-layout wrap align_center>
  5. <v-flex xs12 sm6>
  6. <v-subheader v-text="'Multiple with persistent hint'"></v-subheader>
  7. </v-flex>
  8. <v-flex xs12 sm6>
  9. <v-select
  10. v-model="selected"
  11. :items="items"
  12. item-text= "city"
  13. item-value="value"
  14. :menu-props="{ maxHeight: '400'}"
  15. label="Select"
  16. hint="Pick your favorite states"
  17. multiple
  18. persistent-hint
  19. return-object
  20. single-line
  21. ></v-select>
  22. </v-flex>
  23. </v-layout>
  24. </v-container>
  25.  
  26. </template>
  27.  
  28. <script>
  29.  
  30. export default {
  31. data () {
  32. return {
  33. selected: [],
  34. items:[
  35. {city: 'Aalst', value:43},
  36. {city: 'Ghent', value:12},
  37. {city: 'Bruges', value:95},
  38. ]
  39. }
  40. }
  41. }
  42. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement