Skip to content

Instantly share code, notes, and snippets.

@danielschmitz
Created February 12, 2018 18:47
Show Gist options
  • Save danielschmitz/4c0b5fe5828db3e78aff3ee071741d1f to your computer and use it in GitHub Desktop.
Save danielschmitz/4c0b5fe5828db3e78aff3ee071741d1f to your computer and use it in GitHub Desktop.
Código inicial do App.vue do template webpack
<template>
<div id="app">
<img src="./assets/logo.png">
<router-view/>
</div>
</template>
<script>
export default {
name: 'App'
}
</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