App.vue 172 B

123456789
  1. <template>
  2. <ion-app>
  3. <ion-router-outlet />
  4. </ion-app>
  5. </template>
  6. <script setup lang="ts">
  7. import { IonApp, IonRouterOutlet } from "@ionic/vue";
  8. </script>