Skip to content

Instantly share code, notes, and snippets.

@braian125
Created April 15, 2020 21:42
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 braian125/89041a93eff5a9ab37cc9b3a636bae0d to your computer and use it in GitHub Desktop.
Save braian125/89041a93eff5a9ab37cc9b3a636bae0d to your computer and use it in GitHub Desktop.
//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