index.vue 410 B

123456789101112131415161718192021
  1. <template>
  2. <div class="bg-gray-200 h-full flex">
  3. <div class="p-5 w-80 pr-0">
  4. <div class="bg-white w-full h-full p-3 shadow-md rounded-md">
  5. 线索管理
  6. </div>
  7. </div>
  8. <div class="flex-1 bg-gray-200 p-5">
  9. <div class="bg-white w-full h-full p-3 shadow-md rounded-md">222</div>
  10. </div>
  11. </div>
  12. </template>
  13. <script setup lang="ts">
  14. </script>
  15. <style scoped></style>