feat init

This commit is contained in:
Ironsp
2026-08-21 11:02:07 +08:00
commit 27c5275d83
44 changed files with 15187 additions and 0 deletions

9
src/layouts/default.vue Normal file
View File

@@ -0,0 +1,9 @@
<template>
<view class="px-10 py-20 text-center">
<slot />
<app-footer />
<view class="mx-auto mt-5 text-center text-sm opacity-25">
[Default Layout]
</view>
</view>
</template>

9
src/layouts/home.vue Normal file
View File

@@ -0,0 +1,9 @@
<template>
<view class="px-10 py-20 text-center">
<slot />
<app-footer />
<view class="mx-auto mt-5 text-center text-sm opacity-25">
[Home Layout]
</view>
</view>
</template>