13 lines
311 B
Vue
13 lines
311 B
Vue
<template>
|
|
<div class="max-w-4xl mx-auto p-4 space-y-6">
|
|
<h1 class="text-2xl font-bold">Mock 接口管理系统</h1>
|
|
<AddMockForm />
|
|
<MockList />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import AddMockForm from './components/AddMockForm.vue'
|
|
import MockList from './components/MockList.vue'
|
|
</script>
|