opus-magnum split

This commit is contained in:
2026-05-09 23:56:10 +02:00
parent 8584102402
commit 07f5c76a52
6 changed files with 67 additions and 5 deletions
+5
View File
@@ -0,0 +1,5 @@
<script setup lang="ts">
</script>
<template>
</template>
+9
View File
@@ -0,0 +1,9 @@
import { createApp } from 'vue'
import Home from '@/Home.vue'
import '@/style.css'
// const app = createApp(App)
const selector = "#app"
const mountData = document.querySelector<HTMLElement>(selector)
const app = createApp(Home, { ...mountData?.dataset })
app.mount(selector)