index.vue 533 字节
<template>
	<view class="Comment">
		<Title title="班主任评语"/>
		<view class="Comment-1">
			{{ info }}
		</view>
	</view>
</template>

<script>
	import Title from "../Title/index.vue"
	export default {
		name: 'Comment',
		props: {
			info: {
				type: String,
				default: ''
			}
		},
		components: {
			Title
		},
		data() {
			return {
				
			}
		}
	}
</script>

<style lang="scss" scoped>
	.Comment-1{
		padding: 30rpx;
		font-size: 28rpx;
		color: #3D4054;
		background-color: #fff;
		border-radius: 15rpx;
	}
</style>