DivLine.vue 276 字节
Newer Older
东方怂天's avatar
东方怂天 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<template name="DivLine">
	<view class="division">
	</view>
</template>

<script>
	export default {
		name:"DivLine"
	}
</script>

<style scoped>
	.division {
		width: 100%;
		height: 5upx;
		margin-top: 10upx;
		margin-bottom: 10upx;
东方怂天's avatar
Newly  
东方怂天 已提交
18
		background-color: #FFFFFF;
东方怂天's avatar
东方怂天 已提交
19 20
	}
</style>