Files
bidding_watcher/ionic-app/src/App.vue

22 lines
353 B
Vue
Raw Normal View History

<script setup lang="ts">
import { IonApp, IonRouterOutlet } from '@ionic/vue'
</script>
<template>
<IonApp>
<IonRouterOutlet />
</IonApp>
</template>
<style>
* {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}
</style>