add empty vue application

This commit is contained in:
Tim Wundenberg
2021-07-28 18:18:19 +02:00
parent 9de1629e13
commit 06d31c558d
12 changed files with 12511 additions and 1 deletions

View File

@@ -0,0 +1,4 @@
import { createApp } from 'vue'
import App from './App.vue'
createApp(App).mount('#app')