Added files generated by Claude, prompted by sdk based on the md files

This commit is contained in:
Florian "flowdy" Heß
2026-06-21 19:23:54 +02:00
parent 7bc1ad4536
commit 822e2c9f42
20 changed files with 1886 additions and 0 deletions

12
static/app.js Normal file
View File

@@ -0,0 +1,12 @@
import { createApp, h } from 'vue';
import { store } from './store.js';
import { AppShell } from './components/AppShell.js';
const root = document.getElementById('score-editor-app');
const importOnLoad = root?.dataset.importOnLoad === 'true';
createApp({
setup() {
return () => h(AppShell, { store, importOnLoad });
},
}).mount('#score-editor-app');