添加个人联系页面

This commit is contained in:
kron
2025-05-07 23:34:15 +08:00
parent 29c332f171
commit ab169af87f
11 changed files with 79 additions and 82 deletions

View File

@@ -1,7 +1,27 @@
<script setup>
import { onLaunch } from '@dcloudio/uni-app'
import { onLaunch } from "@dcloudio/uni-app";
onLaunch(() => {})
onLaunch(() => {});
</script>
<style></style>
<style>
button {
margin: 0;
padding: 0;
border: none;
background: none;
line-height: 1;
outline: none;
box-sizing: border-box;
}
/* 去除按钮点击时的默认效果 */
button::after {
border: none;
}
/* 去除按钮的默认边框 */
button[plain] {
border: none;
}
</style>