Can someone help me set the default value for a v-select? The caveat is that my v-select is populated with objects, which I think might be the reason why assigning my item-value to my desired initial value isn't working:
<v-select
  item-text="name"
  v-model="defaultSelected"
  :items="people"
>
Vue.use(Vuetify);
const vm = new Vue({
  el: "#app",
  data: {
    defaultSelected: {
      name: "John",
      last: "Doe"
    },
    people: [
      {
        name: "Harry",
        last: "Potter"
      },
      {
        name: "George",
        last: "Bush"
      }
    ]
  }
});
Expected:
The initial v-select should be John
Actual:
The initial v-select is blank. Here's a fiddle for reference:
https://jsfiddle.net/tgpfhn8m/734/
How can I get the behaviour I expect?
 
     
     
     
     
     
     
    