cloud-ui.vusion
Version:
Vusion Cloud UI
60 lines (40 loc) • 922 B
Markdown
### 普通文本
``` html
<u-text text="普通文本"></u-text>
```
### 小号文本
``` html
<u-text size="small" text="小号文本"></u-text>
```
### 大号文本
``` html
<u-text size="large" text="大号文本"></u-text>
```
### 主要文本
``` html
<u-text color="primary" text="主要文本"></u-text>
```
### 辅助文本
``` html
<u-text color="secondary" text="辅助文本"></u-text>
```
### 成功文本
``` html
<u-text color="success" text="成功文本"></u-text>
```
### 警告文本
``` html
<u-text color="warning" text="警告文本"></u-text>
```
### 错误文本
``` html
<u-text color="error" text="错误文本"></u-text>
```
### 禁用文本
``` html
<u-text color="disabled" text="禁用文本"></u-text>
```
### 文本过长省略
``` html { width: 160px }
<u-text overflow="ellipsis" text="文字过长省略过长省略过长省略过长省略过长省略。"></u-text>
```