Files
city-store-transfer/components/DropDown/DropDownItem.vue
2023-11-09 14:10:42 +08:00

18 lines
235 B
Vue

<template>
<view class="root">
</view>
</template>
<script>
</script>
<style lang="scss" scoped>
.root {
width: 100%;
height: calc(100% - 300rpx);
background-color: magenta;
position: absolute;
z-index: 4;
}
</style>