feat(cli): update site nav color

This commit is contained in:
陈嘉涵 2020-01-18 20:30:25 +08:00
parent cdbd67f379
commit 6191601e29
3 changed files with 44 additions and 49 deletions

View File

@ -37,7 +37,7 @@ export default {
}
a {
color: @van-doc-blue;
color: @van-doc-green;
-webkit-font-smoothing: auto;
}

View File

@ -126,16 +126,15 @@ export default {
color: #455a64;
font-size: 14px;
line-height: 28px;
transition: all 0.3s;
transition: color 0.2s;
&:hover {
color: #000;
&:hover,
&.active {
color: @van-doc-green;
}
&.active {
color: #000;
font-weight: 500;
font-size: 15px;
-webkit-font-smoothing: auto;
}
span {

View File

@ -13,7 +13,7 @@ Vue.use(ActionSheet);
### Basic Usage
Use `actions` prop to set options of action-sheet.
Use `actions` prop to set options of action-sheet.
```html
<van-action-sheet v-model="show" :actions="actions" @select="onSelect" />
@ -39,7 +39,7 @@ export default {
Toast(item.name);
}
}
}
};
```
### Status
@ -60,7 +60,7 @@ export default {
]
};
}
}
};
```
### ActionSheet with cancel button
@ -89,17 +89,13 @@ export default {
Toast('cancel');
}
}
}
};
```
### Show Description
```html
<van-action-sheet
v-model="show"
:actions="actions"
description="Description"
/>
<van-action-sheet v-model="show" :actions="actions" description="Description" />
```
### ActionSheet with title
@ -114,42 +110,42 @@ export default {
### Props
| Attribute | Description | Type | Default |
|------|------|------|------|
| actions | Options | *Action[]* | `[]` |
| title | Title | *string* | - |
| cancel-text | Text of cancel button | *string* | - |
| description `v2.2.8` | Description above the options | *string* | - |
| overlay | Whether to show overlay | *boolean* | `true` |
| round `v2.0.9` | Whether to show round corner | *boolean* | `true` |
| close-icon `v2.2.13` | Close icon name | *string* | `cross` |
| close-on-click-action | Whether to close when click action | *boolean* | `false` |
| close-on-click-overlay | Whether to close when click overlay | *boolean* | `true` |
| lazy-render | Whether to lazy render util appeared | *boolean* | `true` |
| lock-scroll | Whether to lock background scroll | *boolean* | `true` |
| duration `v2.0.3` | Transition duration, unit second | *number* | `0.3` |
| get-container | Return the mount node for action-sheet | *string \| () => Element* | - |
| safe-area-inset-bottom | Whether to enable bottom safe area adaptation | *boolean* | `true` |
| Attribute | Description | Type | Default |
| ---------------------- | --------------------------------------------- | ------------------------- | ------- |
| actions | Options | _Action[]_ | `[]` |
| title | Title | _string_ | - |
| cancel-text | Text of cancel button | _string_ | - |
| description `v2.2.8` | Description above the options | _string_ | - |
| overlay | Whether to show overlay | _boolean_ | `true` |
| round `v2.0.9` | Whether to show round corner | _boolean_ | `true` |
| close-icon `v2.2.13` | Close icon name | _string_ | `cross` |
| close-on-click-action | Whether to close when click action | _boolean_ | `false` |
| close-on-click-overlay | Whether to close when click overlay | _boolean_ | `true` |
| lazy-render | Whether to lazy render util appeared | _boolean_ | `true` |
| lock-scroll | Whether to lock background scroll | _boolean_ | `true` |
| duration `v2.0.3` | Transition duration, unit second | _number_ | `0.3` |
| get-container | Return the mount node for action-sheet | _string \| () => Element_ | - |
| safe-area-inset-bottom | Whether to enable bottom safe area adaptation | _boolean_ | `true` |
### Events
| Event | Description | Arguments |
|------|------|------|
| select | Triggered when click option | item, index |
| cancel | Triggered when cancel click | - |
| click-overlay | Triggered when click overlay | - |
| open | Triggered when open ActionSheet | - |
| opened | Triggered when opened ActionSheet | - |
| close | Triggered when close ActionSheet | - |
| closed | Triggered when closed ActionSheet | - |
| Event | Description | Arguments |
| ------------- | --------------------------------- | ----------- |
| select | Triggered when click option | item, index |
| cancel | Triggered when cancel click | - |
| click-overlay | Triggered when click overlay | - |
| open | Triggered when open ActionSheet | - |
| opened | Triggered when opened ActionSheet | - |
| close | Triggered when close ActionSheet | - |
| closed | Triggered when closed ActionSheet | - |
### Data Structure of Action
| Key | Description | Type |
|------|------|------|
| name | Title | *string* |
| subname | Subtitle | *string* |
| color | Text color | *string* |
| className | className for the option | *any* |
| loading | Whether to be loading status | *boolean* |
| disabled | Whether to be disabled | *boolean* |
| Key | Description | Type |
| --------- | ---------------------------- | --------- |
| name | Title | _string_ |
| subname | Subtitle | _string_ |
| color | Text color | _string_ |
| className | className for the option | _any_ |
| loading | Whether to be loading status | _boolean_ |
| disabled | Whether to be disabled | _boolean_ |