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

18 lines
193 B
Vue
Raw Normal View History

2018-02-21 20:07:24 +01:00
<template>
<div id="app">
<router-view/>
</div>
</template>
<script>
export default {
name: 'App'
}
</script>
<style>
#app {
font-family: Helvetica, Arial, sans-serif;
}
</style>