Skip to content

Instantly share code, notes, and snippets.

@nhumphrey2
Created December 17, 2018 12:06
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 nhumphrey2/77adc3859afc54bf2b0d035e18ec9847 to your computer and use it in GitHub Desktop.
Save nhumphrey2/77adc3859afc54bf2b0d035e18ec9847 to your computer and use it in GitHub Desktop.
Simple App
<template>
<div id="app">
<h1>Omaha Code - Create a Simple App with Vue</h1>
<TodoList />
</div>
</template>
<script>
import TodoList from "./components/TodoList.vue";
export default {
components: {
TodoList
}
};
</script>
<style lang="scss">
@import "./variables.scss";
*,
*::before,
*::after {
box-sizing: border-box;
}
#app {
max-width: 400px;
margin: 0 auto;
line-height: 1.4;
font-family: "Avenir", Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: $vue-blue;
}
h1 {
text-align: center;
}
body {
background-color: #f8f8f8 !important;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment