The problem is the autocomplete will show 'no data available' on application tab. when i click the autocomplete on org tab, it cannot show 'no data available'...
application.vue
<v-tabs v-model="tab">
<v-tab key="application">Application</v-tab>
<v-tab key="org">Org</v-tab>
</v-tabs>
<v-tabs-items v-model="tab">
<v-tab-item key="application">
<v-app id="inspire">
<searchView :postData="0"></searchView>
..........................
<v-tab-item key="org">
<orgView></orgView>
</v-tab-item>
</v-tabs-items>
searchView.vue
<div class="col-sm-4 col-xs-1">
<v-autocomplete
:items="applSearchList"
color="white"
hide-selected
item-text="applDesc"
item-value="applCde"
placeholder="search"
v-model="searchText"
:search-input.sync="searchA"
@change.native="qqq"
/>
my friend had tried the source code, he says it worked. he said the vuetify version has problem. but i don't know what's problem...