fix(vue): unmount teleported components (#26647)

Resolves #26644
This commit is contained in:
Sean Perkins
2023-01-20 11:23:27 -05:00
committed by GitHub
parent 22e9ff866f
commit 6b16a0c020
4 changed files with 63 additions and 19 deletions

View File

@ -9,7 +9,8 @@
</ion-toolbar>
</ion-header>
<ion-content class="ion-padding">
{{ title }}
<ion-label id="title">{{ title }}</ion-label>
<ion-input></ion-input>
</ion-content>
</ion-page>
</template>
@ -23,6 +24,7 @@ import {
IonHeader,
IonTitle,
IonToolbar,
IonInput,
modalController
} from '@ionic/vue';
import { defineComponent } from 'vue';
@ -38,7 +40,8 @@ export default defineComponent({
IonContent,
IonHeader,
IonTitle,
IonToolbar
IonToolbar,
IonInput
},
setup() {
const dismiss = async () => {