style.vue


<template>
	<view>
		<view class="box">
		 我是歌谣
		</view>
	</view>
</template>

<script>
	export default {
		data() {
			return {
				
			}
		},
		methods: {
			
		}
	}
</script>

<style>
.box{
	width: 375rpx;
	height: 375rpx;
	background: #007AFF;
	font-size: 35rpx;
}
</style>

运行结果