I am using vuetify v-select component. The issue I am facing is instead of opening the dropdown downwards, I want it to open upwards because the dropdown is at the bottom of the page so some of the dropdown items don't appear. Like in the picture below there are multiple options are Nunavut which don't appear. Please help me resolve this issue.
<v-layout row wrap>
<v-flex md6 xs12>
<v-select
:items="states"
:closeOnSelect="true"
multiple
attach
item-text='name'
item-value='id'
></v-select>
</v-flex>
</v-layout>