feat: 添加微信扫码登录功能

This commit is contained in:
wangqiao
2025-10-13 23:03:55 +08:00
parent 3f3ea878b9
commit 5baae7652f
5 changed files with 229 additions and 2 deletions

20
layouts/success.vue Normal file
View File

@ -0,0 +1,20 @@
<template>
<div class="layout-wrap">
<div class="flex flex-1 flex-col">
<slot></slot>
</div>
</div>
</template>
<script lang="ts" setup></script>
<style lang="scss" scoped>
.layout-wrap {
flex: 1;
display: flex;
flex-direction: column;
background-color: #fbfcff;
width: 100%;
margin: auto;
}
</style>