<template>
<u-layout dir="v">
<u-layout>
<u-button>普通按钮</u-button>
<u-button type="primary">主要按钮</u-button>
<u-button type="success">成功按钮</u-button>
<u-button type="warning">警告按钮</u-button>
<u-button type="danger">禁用按钮</u-button>
<u-button type="info">消息按钮</u-button>
</u-layout>
<u-layout>
<u-button round>普通按钮</u-button>
<u-button type="primary" round>主要按钮</u-button>
<u-button type="success" round>成功按钮</u-button>
<u-button type="warning" round>警告按钮</u-button>
<u-button type="danger" round>禁用按钮</u-button>
<u-button type="info" round>消息按钮</u-button>
</u-layout>
<u-layout>
<u-button icon="edit" circle />
<u-button icon="share" type="primary" circle />
<u-button icon="share" type="success" circle />
<u-button icon="share" type="warning" circle />
<u-button icon="delete" type="danger" circle />
<u-button icon="search" type="info" circle />
</u-layout>
<u-layout>
<u-button type="text">文字按钮</u-button>
<u-button type="text" disabled>禁用按钮</u-button>
</u-layout>
</u-layout>
</template>
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
32