2025-04-10 11:11:46 +08:00
|
|
|
<script setup>
|
2025-05-07 23:34:15 +08:00
|
|
|
import { onLaunch } from "@dcloudio/uni-app";
|
2025-04-10 11:11:46 +08:00
|
|
|
|
2025-05-07 23:34:15 +08:00
|
|
|
onLaunch(() => {});
|
2025-04-10 11:11:46 +08:00
|
|
|
</script>
|
|
|
|
|
|
2025-05-07 23:34:15 +08:00
|
|
|
<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>
|