comment-header.vue
320 Bytes
<template>
<div class="comment-header">
<slot></slot>
</div>
</template>
<script>
export default {
name: 'CommentHeader',
};
</script>
<style scoped lang="scss">
.comment-header {
height: 50PX;
font-size: 14PX;
border-bottom: solid 1px #eee;
line-height: 50PX;
padding-left: 30px;
}
</style>