Skip to content

Instantly share code, notes, and snippets.

@btodts
Created January 29, 2018 21:23
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 btodts/7556db58074bfc746e63394f4baf9217 to your computer and use it in GitHub Desktop.
Save btodts/7556db58074bfc746e63394f4baf9217 to your computer and use it in GitHub Desktop.
App.Vue as a single-file component
<template>
<div id="app">
<main>
<router-view></router-view>
</main>
</div>
</template>
<script>
export default {
name: 'app'
}
</script>
<style>
body {
margin: 0;
}
#app {
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #2c3e50;
}
/* Additional styling here */
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment