23 lines
354 B
Vue
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>
|