Skip to content

Instantly share code, notes, and snippets.

@SaraVieira
Created March 30, 2018 18:21
Show Gist options
  • Save SaraVieira/54f1dcb3df447a83eb45511d27b47e10 to your computer and use it in GitHub Desktop.
Save SaraVieira/54f1dcb3df447a83eb45511d27b47e10 to your computer and use it in GitHub Desktop.
<template>
<div id="app">
<h1 class="f4 bold center mw5">Add A Person</h1>
<Form/>
<h1 class="f4 bold center mw5">Names</h1>
<Names />
</div>
</template>
<script>
import Form from "./components/Form";
import Names from "./components/Names";
export default {
name: "App",
components: {
Form,
Names
}
};
</script>
<style>
#app {
font-family: "Avenir", Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment