project-message.vue 422 B

123456789101112131415161718192021
  1. <script setup>
  2. const emits = defineEmits(["onClickItem"]);
  3. // 当点击了项目
  4. const handleClickItem = (item) => {
  5. emits("onClickItem", item);
  6. };
  7. </script>
  8. <template>
  9. <div class="project-message-col"></div>
  10. </template>
  11. <style scoped lang="scss">
  12. .project-message-col {
  13. width: 200px;
  14. height: calc(100vh - $main-header-height);
  15. background-color: $hj-black-2;
  16. border-right: 1px solid $hj-white-4;
  17. }
  18. </style>