Add EasyCode front web app

This commit is contained in:
王鹏
2026-05-22 16:26:33 +08:00
parent ca3242915b
commit d39eeca8a9
24 changed files with 2821 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
<template>
<div class="app-shell">
<AppHeader />
<main class="app-main">
<router-view />
</main>
</div>
</template>
<script setup>
import AppHeader from '@/components/AppHeader.vue'
</script>