初始化前端窗口组件框架

This commit is contained in:
2025-10-19 14:56:05 +08:00
parent d85e906b39
commit 4ca191b930
5 changed files with 668 additions and 6 deletions
+11 -5
View File
@@ -1,11 +1,17 @@
<script setup></script>
<template>
<h1>You did it!</h1>
<p>
Visit <a href="https://vuejs.org/" target="_blank" rel="noopener">vuejs.org</a> to read the
documentation
</p>
<div id="app">
<WindowLayout>
<RouterView></RouterView>
</WindowLayout>
</div>
</template>
<script setup>
import WindowLayout from './components/Layout.vue'
</script>
<style scoped></style>