Advertisement
Guest User

Untitled

a guest
Aug 12th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <v-select
  2. :items="accountTypes"
  3. v-model="formData.AccountName"
  4. </v-select>
  5.  
  6. accountTypes: [
  7. {value: 1, text: "student"},
  8. {value: 2, text: "company"}
  9. ],
  10. formData: {
  11. FirstName: '',
  12. LastName: '',
  13. Email: '',
  14. AccountTypeId: 1,
  15. AccountName: 1,
  16. UserName: '',
  17. Password: ''
  18. },
  19.  
  20. const data = {
  21. on: { click: e => this.selectItem(item) },
  22. props: {
  23. avatar: item === Object(item) && 'avatar' in item,
  24. ripple: true,
  25. value: active
  26. }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement