Created
April 15, 2020 21:42
-
-
Save braian125/89041a93eff5a9ab37cc9b3a636bae0d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//src/App.vue | |
<template> | |
<div id="app"> | |
<router-view /> | |
</div> | |
</template> | |
<script> | |
export default { | |
name: "App", | |
components: {} | |
}; | |
</script> | |
<style> | |
#app { | |
font-family: Avenir, Helvetica, Arial, sans-serif; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
text-align: center; | |
color: #2c3e50; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment