Files
ClassContent/历届学生/逯帅帅/项目开发/上课项目/uniapp在包河/components/AllComment.vue
2024-09-27 02:06:13 +08:00

34 lines
605 B
Vue

<template lang="pug">
.Allcomment
span 打开APP查看全部评论
</template>
<script>
export default {
name: "AllComment",
}
</script>
<style scoped lang="less">
.Allcomment{
width: 351px;
height: 44px;
border-radius: 4px;
border: solid 1px #d0302c;
text-align: center;
margin-left: 0.307rem;
line-height: 1.5;
span{
width: 139px;
height: 13px;
font-family: PingFangSC-Medium;
font-size: 14px;
font-weight: normal;
font-stretch: normal;
line-height: 24px;
letter-spacing: 0px;
color: #d0302c;
}
}
</style>