test: add mvp verification plan

This commit is contained in:
2026-07-18 16:50:04 +08:00
parent 8fc8298a62
commit ddebc022fa
9 changed files with 173 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
import './index.css';
import App from './app/App.svelte';
import { mount } from 'svelte';
const target = document.getElementById('app');
@@ -7,4 +8,4 @@ if (!target) {
throw new Error('Missing #app mount target');
}
new App({ target });
mount(App, { target });