sub-container.uvue 377 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
<template>
	<view id="teleport" class="sub-container">
		<view>
			<text class="text">红色区域为子组件</text>
		</view>
	</view>
</template>

<script>
	export default {
		data() {
			return {

			}
		},
		methods: {

		}
	}
</script>

<style>
.sub-container {
	background-color:red;
	height:200px;
	padding:10px;
}
.text {
	color:#fff;
}
</style>