feat: sketch布局

This commit is contained in:
2026-02-11 17:27:51 +08:00
parent 6221acfa30
commit 73e59919ee
5 changed files with 112 additions and 3 deletions

View File

@@ -0,0 +1,22 @@
<template>
<div class="menu-wrapper flex space-between">
<div class="menu-item"></div>
<div class="menu-item"></div>
<div class="menu-item"></div>
</div>
</template>
<script setup></script>
<style lang="less" scoped>
.menu-wrapper {
width: 1.8rem;
cursor: pointer;
.menu-item {
width: 0.4rem;
height: 0.4rem;
background-color: #000;
border-radius: 50%;
}
}
</style>