16 lines
367 B
Vue
16 lines
367 B
Vue
<script lang="ts" setup></script>
|
|
|
|
<template>
|
|
<div class="container m-auto">
|
|
<h1 class="mt-4 text-center font-bold font-size-[22px] c-primary">代码生成器</h1>
|
|
|
|
<main class="container mx-auto">
|
|
<router-view />
|
|
</main>
|
|
|
|
<footer class="my-4 text-center">
|
|
<p>© 2025 Bunny.保留所有权利.</p>
|
|
</footer>
|
|
</div>
|
|
</template>
|