App.vue
313 Bytes
<template>
<div id="app">
<!-- <div id="nav">
<router-link to="/">Home</router-link> |
<router-link to="/about">About</router-link>
</div> -->
<router-view/>
</div>
</template>
<style lang="scss">
* {
&:focus {
outline: none;
}
}
body {
margin: 0;
padding: 0;
}
</style>