uniapp component-Section title

The uni-section component is mainly used for title display of articles, list details, etc.

Example 1

<template>
	<view>
			<uni-section title="主标题" type="line"></uni-section>
			<uni-section title="主标题" sub-title="副标题"></uni-section>
			<uni-section title="竖线装饰-主标题" sub-title="副标题" type="line"></uni-section>
			<uni-section title="圆形装饰-主标题" sub-title="副标题" type="circle" ></uni-section>
	</view>
</template>

Effect picture

Guess you like

Origin blog.csdn.net/qq_40323256/article/details/114240072