move AccompanyingCourse component in his own directory

This commit is contained in:
2021-04-26 11:46:59 +02:00
parent a8f55e064d
commit 93260ea36f
10 changed files with 55 additions and 37 deletions

View File

@@ -0,0 +1,8 @@
import App from './App.vue';
import { createApp } from 'vue';
const app = createApp({
template: `<app></app>`
})
.component('app', App)
.mount('#accompanying-course');