feat(Notify): add lockScroll option (#8168)

This commit is contained in:
neverland 2021-02-16 13:57:05 +08:00 committed by GitHub
parent 8568c02e0b
commit f7b09d1677
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 1 deletions

View File

@ -13,6 +13,7 @@ export default createComponent({
message: [Number, String],
className: UnknownProp,
background: String,
lockScroll: Boolean,
type: {
type: String as PropType<NotifyType>,
default: 'danger',
@ -34,7 +35,7 @@ export default createComponent({
overlay={false}
position="top"
duration={0.2}
lockScroll={false}
lockScroll={props.lockScroll}
>
{slots.default ? slots.default() : props.message}
</Popup>

View File

@ -107,6 +107,7 @@ export default {
| color | Message color | _string_ | `white` | |
| background | Background color | _string_ | - |
| className | Custom className | _string \| Array \| object_ | - |
| lockScroll `v3.0.7` | Whether to lock background scroll | _boolean_ | `false` |
| onClick | Callback function after click | _(event: MouseEvent) => void_ | - |
| onOpened | Callback function after opened | _() => void_ | - |
| onClose | Callback function after close | _() => void_ | - |

View File

@ -144,6 +144,7 @@ export default {
| color | 字体颜色 | _string_ | `white` |
| background | 背景颜色 | _string_ | - |
| className | 自定义类名 | _string \| Array \| object_ | - |
| lockScroll `v3.0.7` | 是否锁定背景滚动 | _boolean_ | `false` |
| onClick | 点击时的回调函数 | _(event: MouseEvent): void_ | - |
| onOpened | 完全展示后的回调函数 | _() => void_ | - |
| onClose | 关闭时的回调函数 | _() => void_ | - |

View File

@ -15,6 +15,7 @@ export type NotifyOptions = {
duration?: number;
className?: unknown;
background?: string;
lockScroll?: boolean;
onClick?: (event: MouseEvent) => void;
onClose?: () => void;
onOpened?: () => void;
@ -74,6 +75,7 @@ function defaultOptions() {
onOpened: undefined,
duration: 3000,
className: '',
lockScroll: false,
background: undefined,
} as NotifyOptions;
}