aboutsummaryrefslogtreecommitdiff
path: root/src/App.vue
blob: 38442ee0559787c6ef0756febe2117a6f52477d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
<template>
  <router-view />
</template>

<script>
import { defineComponent } from 'vue'

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