opus-magnum split
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
<script setup lang="ts">
|
||||
</script>
|
||||
|
||||
<template>
|
||||
</template>
|
||||
@@ -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)
|
||||
Reference in New Issue
Block a user