Move out of frontend folder

This commit is contained in:
Ben Ramey
2018-06-06 20:36:20 -05:00
committed by benjaminramey
parent 00400390b7
commit 84072c66db
38 changed files with 1249 additions and 0 deletions

22
src/App.vue Normal file
View File

@@ -0,0 +1,22 @@
<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>