2024-12-27 14:23:27 +08:00

32 lines
581 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="options">
<div class="text">哈哈让你发现了</div>
<div class="text">不过这里什么都没有</div>
</div>
</template>
<script lang="ts">
import { defineComponent } from "vue";
export default defineComponent({
name: "options",
components: {},
setup(props, ctx) {
return {};
},
});
</script>
<style scoped lang="less">
.options {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
.text {
user-select: none;
font-size: 40px;
}
}
</style>