options移植

This commit is contained in:
xu_yanfeng
2024-01-08 19:53:51 +08:00
parent fb028828f7
commit 2ad5bf6e60
5 changed files with 17 additions and 72 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 194 KiB

View File

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