From e40abd48051aa8bd871a24bd43ada69dbebbc5ef Mon Sep 17 00:00:00 2001 From: neverland Date: Sun, 29 Oct 2023 17:11:42 +0800 Subject: [PATCH] docs(progress): remove outdated resize method (#12412) --- packages/vant/src/progress/README.md | 11 ----------- packages/vant/src/progress/README.zh-CN.md | 11 ----------- packages/vant/src/progress/types.ts | 9 +-------- 3 files changed, 1 insertion(+), 30 deletions(-) diff --git a/packages/vant/src/progress/README.md b/packages/vant/src/progress/README.md index 873d61eca..3bfb80a6c 100644 --- a/packages/vant/src/progress/README.md +++ b/packages/vant/src/progress/README.md @@ -77,17 +77,6 @@ The component exports the following type definitions: import type { ProgressProps, ProgressInstance } from 'vant'; ``` -`ProgressInstance` is the type of component instance: - -```ts -import { ref } from 'vue'; -import type { ProgressInstance } from 'vant'; - -const progressRef = ref(); - -progressRef.value?.resize(); -``` - ## Theming ### CSS Variables diff --git a/packages/vant/src/progress/README.zh-CN.md b/packages/vant/src/progress/README.zh-CN.md index 86d8e0ea6..175448d40 100644 --- a/packages/vant/src/progress/README.zh-CN.md +++ b/packages/vant/src/progress/README.zh-CN.md @@ -81,17 +81,6 @@ app.use(Progress); import type { ProgressProps, ProgressInstance } from 'vant'; ``` -`ProgressInstance` 是组件实例的类型,用法如下: - -```ts -import { ref } from 'vue'; -import type { ProgressInstance } from 'vant'; - -const progressRef = ref(); - -progressRef.value?.resize(); -``` - ## 主题定制 ### 样式变量 diff --git a/packages/vant/src/progress/types.ts b/packages/vant/src/progress/types.ts index 4976ed381..b1ac68607 100644 --- a/packages/vant/src/progress/types.ts +++ b/packages/vant/src/progress/types.ts @@ -1,14 +1,7 @@ import type { ComponentPublicInstance } from 'vue'; import type { ProgressProps } from './Progress'; -export type ProgressExpose = { - resize: () => void; -}; - -export type ProgressInstance = ComponentPublicInstance< - ProgressProps, - ProgressExpose ->; +export type ProgressInstance = ComponentPublicInstance; export type ProgressThemeVars = { progressHeight?: string;