Skip to content

Instantly share code, notes, and snippets.

@Grantimus9
Created January 5, 2018 17:03
Show Gist options
  • Save Grantimus9/fef9e66c990033cfc16eca55e5832637 to your computer and use it in GitHub Desktop.
Save Grantimus9/fef9e66c990033cfc16eca55e5832637 to your computer and use it in GitHub Desktop.
<template>
<div id="app">
<h1>{{ msg }}</h1>
</div>
</template>
<script>
export default {
name: 'app',
data () {
return {
msg: 'Welcome to Your Vue.js & Phoenix & GraphQL App'
}
}
}
</script>
<style lang="scss">
#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;
}
h1, h2 {
font-weight: normal;
}
ul {
list-style-type: none;
padding: 0;
}
li {
display: inline-block;
margin: 0 10px;
}
a {
color: #42b983;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment