Skip to content

Commit

Permalink
feat: route component
Browse files Browse the repository at this point in the history
  • Loading branch information
nanami69 committed Apr 19, 2023
1 parent 3da338e commit 8878f86
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions pages/App.vue
@@ -0,0 +1,16 @@
<template>
<div id="app">
<!-- ここに各コンポーネントを配置する -->
<router-view></router-view>
</div>
</template>

<script>
export default {
name: 'App'
}
</script>

<style>
/* CSSのスタイルを記述する */
</style>

0 comments on commit 8878f86

Please sign in to comment.