Files
lunchrun-aws/src/App.vue
2020-03-14 14:54:25 -05:00

23 lines
354 B
Vue

<template>
<div id="app" v-if="hydrated">
<router-view/>
</div>
</template>
<script>
export default {
name: 'App',
data: () => ({ hydrated: false }),
async mounted () {
await this.$apollo.provider.defaultClient.hydrated()
this.hydrated = true
}
}
</script>
<style>
#app {
font-family: Helvetica, Arial, sans-serif;
}
</style>