docs(Search): update document (#4414)

This commit is contained in:
neverland
2019-09-10 17:34:58 +08:00
committed by GitHub
parent f6f696ff73
commit 4192ef198e
9 changed files with 37 additions and 40 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ Vue.use(Tag);
### 基础用法
通过 type 属性控制 Tag 颜色,默认为灰色
通过`type`属性控制标签颜色,默认为灰色
```html
<van-tag>标签</van-tag>
+1 -1
View File
@@ -11,8 +11,8 @@ export type TagType = 'default' | 'primary' | 'success' | 'danger';
export type TagSize = 'large' | 'medium';
export type TagProps = {
type: TagType;
size?: TagSize;
type?: TagType;
mark?: boolean;
color?: string;
plain?: boolean;