docs(progress): remove outdated resize method (#12412)

This commit is contained in:
neverland 2023-10-29 17:11:42 +08:00 committed by GitHub
parent 6ec1cf21f1
commit e40abd4805
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 1 additions and 30 deletions

View File

@ -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<ProgressInstance>();
progressRef.value?.resize();
```
## Theming
### CSS Variables

View File

@ -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<ProgressInstance>();
progressRef.value?.resize();
```
## 主题定制
### 样式变量

View File

@ -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<ProgressProps>;
export type ProgressThemeVars = {
progressHeight?: string;