mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
types(NoticeBar): add NoticeBarInstance type (#9245)
This commit is contained in:
parent
08c53c82d2
commit
a589fc2d12
@ -1,4 +1,11 @@
|
|||||||
import { ref, watch, reactive, PropType, defineComponent } from 'vue';
|
import {
|
||||||
|
ref,
|
||||||
|
watch,
|
||||||
|
reactive,
|
||||||
|
PropType,
|
||||||
|
defineComponent,
|
||||||
|
ExtractPropTypes,
|
||||||
|
} from 'vue';
|
||||||
|
|
||||||
// Utils
|
// Utils
|
||||||
import { isDef, createNamespace } from '../utils';
|
import { isDef, createNamespace } from '../utils';
|
||||||
@ -17,33 +24,38 @@ import { onPopupReopen } from '../composables/on-popup-reopen';
|
|||||||
// Components
|
// Components
|
||||||
import { Icon } from '../icon';
|
import { Icon } from '../icon';
|
||||||
|
|
||||||
export type NoticeBarMode = 'closeable' | 'link';
|
// Types
|
||||||
|
import { NoticeBarMode } from './types';
|
||||||
|
|
||||||
const [name, bem] = createNamespace('notice-bar');
|
const [name, bem] = createNamespace('notice-bar');
|
||||||
|
|
||||||
|
const props = {
|
||||||
|
text: String,
|
||||||
|
mode: String as PropType<NoticeBarMode>,
|
||||||
|
color: String,
|
||||||
|
leftIcon: String,
|
||||||
|
wrapable: Boolean,
|
||||||
|
background: String,
|
||||||
|
scrollable: {
|
||||||
|
type: Boolean as PropType<boolean | null>,
|
||||||
|
default: null,
|
||||||
|
},
|
||||||
|
delay: {
|
||||||
|
type: [Number, String],
|
||||||
|
default: 1,
|
||||||
|
},
|
||||||
|
speed: {
|
||||||
|
type: [Number, String],
|
||||||
|
default: 60,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export type NoticeBarProps = ExtractPropTypes<typeof props>;
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
name,
|
name,
|
||||||
|
|
||||||
props: {
|
props,
|
||||||
text: String,
|
|
||||||
mode: String as PropType<NoticeBarMode>,
|
|
||||||
color: String,
|
|
||||||
leftIcon: String,
|
|
||||||
wrapable: Boolean,
|
|
||||||
background: String,
|
|
||||||
scrollable: {
|
|
||||||
type: Boolean as PropType<boolean | null>,
|
|
||||||
default: null,
|
|
||||||
},
|
|
||||||
delay: {
|
|
||||||
type: [Number, String],
|
|
||||||
default: 1,
|
|
||||||
},
|
|
||||||
speed: {
|
|
||||||
type: [Number, String],
|
|
||||||
default: 60,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
emits: ['close', 'replay'],
|
emits: ['close', 'replay'],
|
||||||
|
|
||||||
|
@ -115,6 +115,19 @@ Use [ref](https://v3.vuejs.org/guide/component-template-refs.html) to get Notice
|
|||||||
| -------------- | --------------- | --------- | ------------ |
|
| -------------- | --------------- | --------- | ------------ |
|
||||||
| reset `v3.1.1` | Reset NoticeBar | - | - |
|
| reset `v3.1.1` | Reset NoticeBar | - | - |
|
||||||
|
|
||||||
|
### Types
|
||||||
|
|
||||||
|
Get the type definition of the NoticeBar instance through `NoticeBarInstance`.
|
||||||
|
|
||||||
|
```ts
|
||||||
|
import { ref } from 'vue';
|
||||||
|
import type { NoticeBarInstance } from 'vant';
|
||||||
|
|
||||||
|
const noticeBarRef = ref<NoticeBarInstance>();
|
||||||
|
|
||||||
|
noticeBarRef.value?.reset();
|
||||||
|
```
|
||||||
|
|
||||||
### Slots
|
### Slots
|
||||||
|
|
||||||
| Name | Description |
|
| Name | Description |
|
||||||
|
@ -136,6 +136,19 @@ app.use(NoticeBar);
|
|||||||
| -------------- | -------------------- | ---- | ------ |
|
| -------------- | -------------------- | ---- | ------ |
|
||||||
| reset `v3.1.1` | 重置通知栏到初始状态 | - | - |
|
| reset `v3.1.1` | 重置通知栏到初始状态 | - | - |
|
||||||
|
|
||||||
|
### 类型定义
|
||||||
|
|
||||||
|
通过 `NoticeBarInstance` 获取 NoticeBar 实例的类型定义(从 3.2.0 版本开始支持)。
|
||||||
|
|
||||||
|
```ts
|
||||||
|
import { ref } from 'vue';
|
||||||
|
import type { NoticeBarInstance } from 'vant';
|
||||||
|
|
||||||
|
const noticeBarRef = ref<NoticeBarInstance>();
|
||||||
|
|
||||||
|
noticeBarRef.value?.reset();
|
||||||
|
```
|
||||||
|
|
||||||
### Slots
|
### Slots
|
||||||
|
|
||||||
| 名称 | 内容 |
|
| 名称 | 内容 |
|
||||||
|
@ -5,4 +5,4 @@ const NoticeBar = withInstall<typeof _NoticeBar>(_NoticeBar);
|
|||||||
|
|
||||||
export default NoticeBar;
|
export default NoticeBar;
|
||||||
export { NoticeBar };
|
export { NoticeBar };
|
||||||
export type { NoticeBarMode } from './NoticeBar';
|
export type { NoticeBarMode, NoticeBarInstance } from './types';
|
||||||
|
13
src/notice-bar/types.ts
Normal file
13
src/notice-bar/types.ts
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
import type { ComponentPublicInstance } from 'vue';
|
||||||
|
import type { NoticeBarProps } from './NoticeBar';
|
||||||
|
|
||||||
|
export type NoticeBarMode = 'closeable' | 'link';
|
||||||
|
|
||||||
|
export type NoticeBarExpose = {
|
||||||
|
reset: () => void;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type NoticeBarInstance = ComponentPublicInstance<
|
||||||
|
NoticeBarProps,
|
||||||
|
NoticeBarExpose
|
||||||
|
>;
|
Loading…
x
Reference in New Issue
Block a user