index.vue 467 Bytes
<template>
	<view class="ncc-group" :style="{'text-align':contentPosition}">{{content}}</view>
</template>
<script>
	export default {
		name: 'ncc-group',
		props: {
			content: {
				type: String,
				default: ''
			},
			'content-position': {
				type: String,
				default: 'left'
			},
		}
	}
</script>
<style lang="scss" scoped>
	.ncc-group {
		width: 100%;
		color: #333333;
		font-size: 32rpx;
		line-height: 70rpx;
		margin: 0;
		padding: 0 32rpx;
	}
</style>