Skip to content

Instantly share code, notes, and snippets.

@malgamves
Created October 17, 2018 21:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save malgamves/3ad4b9c80b536bdff208a17097cc8ae4 to your computer and use it in GitHub Desktop.
Save malgamves/3ad4b9c80b536bdff208a17097cc8ae4 to your computer and use it in GitHub Desktop.
Vue GraphQL App.vue file
<template>
<div id="app" class="background">
<div >
<h1> Books I've Read</h1>
<book-list></book-list>
</div>
</div>
</template>
<script>
import BookList from './components/BookList'
export default {
name: 'app',
components: {
BookList
}
}
</script>
<style>
.background {
background: #828282;
margin: auto;
text-align: center;
border-radius: 10px;
padding: 2%;
width: 50%;
height: 50%;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment