32 lines
616 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">
<div class="text">哈哈让你发现了</div>
<div class="text">不过这里什么都没有</div>
</div>
2024-01-05 16:45:23 +08:00
</template>
<script lang="ts">
import { defineComponent, onMounted, ref, provide, nextTick } from "vue";
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;
.text {
user-select: none;
font-size: 40px;
}
2024-01-05 16:45:23 +08:00
}
2024-01-08 19:53:51 +08:00
</style>