123456789101112131415161718192021 |
- <script setup>
- const emits = defineEmits(["onClickItem"]);
- // 当点击了项目
- const handleClickItem = (item) => {
- emits("onClickItem", item);
- };
- </script>
- <template>
- <div class="project-message-col"></div>
- </template>
- <style scoped lang="scss">
- .project-message-col {
- width: 200px;
- height: calc(100vh - $main-header-height);
- background-color: $hj-black-2;
- border-right: 1px solid $hj-white-4;
- }
- </style>
|