AI-accounting-soft-uniApp/components/uni-section/readme.md
2025-12-12 16:49:06 +08:00

31 lines
852 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

### Section 标题栏
标题栏,用于显示标题,组件名:``uni-section``,代码块: uSection。
### 使用方式
在 ``script`` 中引用组件
```javascript
import uniSection from "@/components/uni-section/uni-section.vue"
export default {
components: {uniSection}
}
```
在 ``template`` 中使用组件
```html
<uni-section title="只有主标题"></uni-section>
<uni-section title="竖线装饰" sub-title="副标题" type="line"></uni-section>
<uni-section title="圆形装饰" sub-title="副标题" type="circle"></uni-section>
```
### 属性说明
|属性名 |类型 |默认值 |说明 |
|--- |---- |--- |--- |
|type |String |- |标题装饰类型 可选值line竖线、circle圆形|
|title |String |- |主标题 |
|sub-title |String |- |副标题 |