feat(app): scaffold Vue3 frontend (stage 1)

This commit is contained in:
2025-12-13 22:42:31 +08:00
parent 39153cc946
commit 34f44eed3e
35 changed files with 2910 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<template>
<el-card shadow="never" :body-style="{ padding: '16px' }" class="card">
<h2 class="title">定时任务</h2>
<div class="app-muted">阶段1页面壳子已就绪功能将在后续阶段迁移</div>
</el-card>
</template>
<style scoped>
.card {
border-radius: var(--app-radius);
border: 1px solid var(--app-border);
}
.title {
margin: 0 0 6px;
font-size: 16px;
font-weight: 800;
}
</style>