feat(signature): export clear and submit method (#12654)

This commit is contained in:
chouchouji 2024-03-15 20:55:28 +08:00 committed by GitHub
parent f70feab438
commit 2353549d06
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 8 additions and 0 deletions

View File

@ -106,6 +106,8 @@ Use [ref](https://vuejs.org/guide/essentials/template-refs.html) to get Signatur
| Name | Description | Attribute | Return value |
| --- | --- | --- | --- |
| resize `v4.7.3` | Resize Signature when container element resized or visibility changed | - | - |
| clear `v4.8.6` | Can be called to clear the signature | - | - |
| submit `v4.8.6` | Trigger the `submit` event, which is equivalent to clicking the confirm button. | - | - |
### Types

View File

@ -106,6 +106,8 @@ export default {
| 方法名 | 说明 | 参数 | 返回值 |
| --- | --- | --- | --- |
| resize `v4.7.3` | 外层元素大小或组件显示状态变化时,可以调用此方法来触发重绘 | - | - |
| clear `v4.8.6` | 可调用此方法来清除签名 | - | - |
| submit `v4.8.6` | 触发 `submit` 事件,与点击确认按钮的效果等价 | - | - |
### 类型定义

View File

@ -181,6 +181,8 @@ export default defineComponent({
useExpose<SignatureExpose>({
resize,
clear,
submit,
});
return () => (

View File

@ -3,6 +3,8 @@ import type { SignatureProps } from './Signature';
export type SignatureExpose = {
resize: () => void;
clear: () => void;
submit: () => void;
};
export type SignatureInstance = ComponentPublicInstance<