feat(menu): 为页面添加标题和布局配置支持

This commit is contained in:
严浩
2025-10-22 11:29:27 +08:00
parent 18360ac41d
commit 4949e1c957
11 changed files with 40 additions and 92 deletions

View File

@@ -1,6 +1,12 @@
<script setup lang="ts">
import { ref } from 'vue';
definePage({
meta: {
title: 'API 调用示例',
},
});
// ========== API 模块 ==========
const apiResult = ref<string>('');
const loading = ref(false);