diff --git a/packages/vant-cli/site/desktop/components/Content.vue b/packages/vant-cli/site/desktop/components/Content.vue index a95b90a63..9d961cf3c 100644 --- a/packages/vant-cli/site/desktop/components/Content.vue +++ b/packages/vant-cli/site/desktop/components/Content.vue @@ -37,7 +37,7 @@ export default { } a { - color: @van-doc-blue; + color: @van-doc-green; -webkit-font-smoothing: auto; } diff --git a/packages/vant-cli/site/desktop/components/Nav.vue b/packages/vant-cli/site/desktop/components/Nav.vue index ce53c0573..4103b9a7e 100644 --- a/packages/vant-cli/site/desktop/components/Nav.vue +++ b/packages/vant-cli/site/desktop/components/Nav.vue @@ -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 { diff --git a/src/action-sheet/README.md b/src/action-sheet/README.md index f1d622c97..18b98925a 100644 --- a/src/action-sheet/README.md +++ b/src/action-sheet/README.md @@ -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 @@ -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 - + ``` ### 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_ |