123456789101112131415161718192021 |
- <template>
- <div class="bg-gray-200 h-full flex">
- <div class="p-5 w-80 pr-0">
- <div class="bg-white w-full h-full p-3 shadow-md rounded-md">
- 线索管理
- </div>
- </div>
- <div class="flex-1 bg-gray-200 p-5">
- <div class="bg-white w-full h-full p-3 shadow-md rounded-md">222</div>
- </div>
- </div>
- </template>
- <script setup lang="ts">
- </script>
- <style scoped></style>
|