mirror of
https://github.com/simon987/music-graph-ui.git
synced 2025-12-14 07:09:06 +00:00
22 lines
223 B
Vue
22 lines
223 B
Vue
<template>
|
|
<div id="app">
|
|
<router-view/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'App'
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
body {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
#app {
|
|
}
|
|
</style>
|