This repository has been archived on 2019-03-23. You can view files and clone it, but cannot push or open issues/pull-requests.
binauralbeats/src/App.vue

23 lines
232 B
Vue

<template>
<div id="app">
<router-view/>
</div>
</template>
<script>
export default {
name: 'App'
}
</script>
<style>
#app {
font-family: sans-serif;
}
body {
background-color: #fdf6e3;
color: #839496;
}
</style>