48 lines
998 B
Vue
Raw Normal View History

2024-01-05 16:45:23 +08:00
<template>
2024-01-08 19:53:51 +08:00
<div class="options">
2025-01-08 17:51:18 +08:00
<ul>
<li>
<div class="money">
<div class="tips">support me with WeChat Pay</div>
<img class="png" src="./res/money.png" alt="" />
</div>
</li>
<li>
<a target="_blank" href="https://patreon.com/inspector_game?utm_medium=unknown&utm_source=join_link&utm_campaign=creatorshare_creator&utm_content=copyLink">support me with Patreon</a>
</li>
</ul>
2024-01-08 19:53:51 +08:00
</div>
2024-01-05 16:45:23 +08:00
</template>
<script lang="ts">
2024-12-27 14:23:27 +08:00
import { defineComponent } from "vue";
2024-01-05 16:45:23 +08:00
export default defineComponent({
name: "options",
components: {},
setup(props, ctx) {
2024-01-08 19:53:51 +08:00
return {};
2024-01-05 16:45:23 +08:00
},
});
</script>
<style scoped lang="less">
.options {
2024-01-08 19:53:51 +08:00
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
2025-01-08 17:51:18 +08:00
font-size: 30px;
user-select: none;
.png {
width: auto;
height: 130px;
}
2024-01-08 19:53:51 +08:00
2025-01-08 17:51:18 +08:00
.tips {
text-align: center;
width: 100%;
color: #000000;
2024-01-08 19:53:51 +08:00
}
2024-01-05 16:45:23 +08:00
}
2024-01-08 19:53:51 +08:00
</style>