This commit is contained in:
sexygoat
2026-01-22 17:25:30 +08:00
commit 6bf56a4b4c
35 changed files with 6297 additions and 0 deletions

21
pages/error/error.vue Normal file
View File

@@ -0,0 +1,21 @@
<template>
<view class="error">
请在微信中打开...
</view>
</template>
<script setup>
</script>
<style lang="less" scoped>
.error{
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
font-size: 30rpx;
color: #999;
}
</style>