mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
docs(progress): remove outdated resize method (#12412)
This commit is contained in:
parent
6ec1cf21f1
commit
e40abd4805
@ -77,17 +77,6 @@ The component exports the following type definitions:
|
|||||||
import type { ProgressProps, ProgressInstance } from 'vant';
|
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
|
## Theming
|
||||||
|
|
||||||
### CSS Variables
|
### CSS Variables
|
||||||
|
@ -81,17 +81,6 @@ app.use(Progress);
|
|||||||
import type { ProgressProps, ProgressInstance } from 'vant';
|
import type { ProgressProps, ProgressInstance } from 'vant';
|
||||||
```
|
```
|
||||||
|
|
||||||
`ProgressInstance` 是组件实例的类型,用法如下:
|
|
||||||
|
|
||||||
```ts
|
|
||||||
import { ref } from 'vue';
|
|
||||||
import type { ProgressInstance } from 'vant';
|
|
||||||
|
|
||||||
const progressRef = ref<ProgressInstance>();
|
|
||||||
|
|
||||||
progressRef.value?.resize();
|
|
||||||
```
|
|
||||||
|
|
||||||
## 主题定制
|
## 主题定制
|
||||||
|
|
||||||
### 样式变量
|
### 样式变量
|
||||||
|
@ -1,14 +1,7 @@
|
|||||||
import type { ComponentPublicInstance } from 'vue';
|
import type { ComponentPublicInstance } from 'vue';
|
||||||
import type { ProgressProps } from './Progress';
|
import type { ProgressProps } from './Progress';
|
||||||
|
|
||||||
export type ProgressExpose = {
|
export type ProgressInstance = ComponentPublicInstance<ProgressProps>;
|
||||||
resize: () => void;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type ProgressInstance = ComponentPublicInstance<
|
|
||||||
ProgressProps,
|
|
||||||
ProgressExpose
|
|
||||||
>;
|
|
||||||
|
|
||||||
export type ProgressThemeVars = {
|
export type ProgressThemeVars = {
|
||||||
progressHeight?: string;
|
progressHeight?: string;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user